File:  [ELWIX - Embedded LightWeight unIX -] / libaitcfg / bin / Makefile.in
Revision 1.1.2.1: download - view: text, annotated - select for diffs - revision graph
Thu Jan 30 12:23:31 2025 UTC (4 months, 3 weeks ago) by misho
Branches: cfg9_5
adds bin makefile

#
# (C) 2025 by Michael Pounov <misho@elwix.org>
#   AITNET ltd - Sofia/Bulgaria
#
# $Author: misho $
# $Id: Makefile.in,v 1.1.2.1 2025/01/30 12:23:31 misho Exp $
#

prefix = @prefix@
exec_prefix = @exec_prefix@
bindir = @bindir@

INSTALL = @INSTALL@

PROG = cfgprog

all:

depend:

clean:
	@rm -f ${PROG} *~

install:
	${INSTALL} -d ${prefix}
	${INSTALL} -d ${bindir}
	${INSTALL} ${PROG} ${bindir}
	@ln -fs ${bindir}/${PROG} ${bindir}/cfg_get
	@ln -fs ${bindir}/${PROG} ${bindir}/cfg_set

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>