File:  [ELWIX - Embedded LightWeight unIX -] / libaitcfg / bin / Makefile.in
Revision 1.2.2.1: download - view: text, annotated - select for diffs - revision graph
Tue May 13 11:42:08 2025 UTC (4 months ago) by misho
Branches: cfg9_6
Diff to: branchpoint 1.2: preferred, unified
separate cfgprog target

#
# (C) 2025 by Michael Pounov <misho@elwix.org>
#   AITNET ltd - Sofia/Bulgaria
#
# $Author: misho $
# $Id: Makefile.in,v 1.2.2.1 2025/05/13 11:42:08 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>