Diff for /libaitcfg/bin/Makefile.in between versions 1.1 and 1.2

version 1.1, 2025/01/30 12:23:31 version 1.2, 2025/01/31 00:03:15
Line 0 Line 1
   #
   # (C) 2025 by Michael Pounov <misho@elwix.org>
   #   AITNET ltd - Sofia/Bulgaria
   #
   # $Author$
   # $Id$
   #
   
   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

Removed from v.1.1  
changed lines
  Added in v.1.2


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