File:  [ELWIX - Embedded LightWeight unIX -] / libaitcfg / bin / Makefile.in
Revision 1.3: download - view: text, annotated - select for diffs - revision graph
Tue Aug 19 11:43:53 2025 UTC (3 weeks, 5 days ago) by misho
Branches: MAIN
CVS tags: cfg9_7, HEAD, CFG9_6
Version 9.6

#
# (C) 2025 by Michael Pounov <misho@elwix.org>
#   AITNET ltd - Sofia/Bulgaria
#
# $Author: misho $
# $Id: Makefile.in,v 1.3 2025/08/19 11:43:53 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}
	@if test -r "${PROG}"; then \
		${INSTALL} ${PROG} ${bindir}; \
		ln -fs ${bindir}/${PROG} ${bindir}/cfg_get; \
		ln -fs ${bindir}/${PROG} ${bindir}/cfg_set; \
	fi

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