Annotation of embedtools/bin/Makefile.in, revision 1.5.8.2

1.2       misho       1: #
                      2: # (C) 2009 AITnet - Sofia/Bulgaria - <misho@openbsd-bg.org>
                      3: # by Michael Pounov <misho@openbsd-bg.org>
                      4: #
                      5: # $Author: misho $
1.5.8.2 ! misho       6: # $Id: Makefile.in,v 1.5.8.1 2018/01/02 02:02:15 misho Exp $
1.2       misho       7: #
                      8: 
                      9: prefix = @prefix@
                     10: exec_prefix = @exec_prefix@
                     11: bindir = @bindir@
                     12: sbindir = @sbindir@
                     13: 
1.3       misho      14: OS = @OS@
1.4       misho      15: MACHINE = @host_cpu@
1.3       misho      16: 
1.2       misho      17: INSTALL = @INSTALL@
                     18: 
1.4       misho      19: PROGS = cfexec get1steth dpatch direr dircmp wdog voucher cfger ube imgupd
1.5.8.2 ! misho      20: FreeBSD_PROGS = athctl dwds cfi
        !            21: FreeBSD_SCRS = epkg
1.2       misho      22: 
1.4       misho      23: .if ${MACHINE} == "i386" && ${OS} == "FreeBSD"
                     24: FreeBSD_PROGS += pceng
                     25: .endif
                     26: 
1.5       misho      27: .if ${OS} == "FreeBSD"
                     28: FreeBSD_PROGS += butz
                     29: .endif
                     30: 
                     31: 
1.2       misho      32: all:
                     33: 
1.3       misho      34: FreeBSD:
                     35:        ${INSTALL} -o root -g wheel ${FreeBSD_PROGS} ${bindir}
1.5.8.2 ! misho      36:        @chmod +x ${FreeBSD_SCRS}
        !            37:        ${INSTALL} -o root -g wheel ${FreeBSD_SCRS} ${bindir}
1.3       misho      38: 
                     39: OpenBSD:
                     40: 
                     41: NetBSD:
                     42: 
1.2       misho      43: depend:
                     44: 
                     45: clean:
1.5.8.2 ! misho      46:        rm -f ${PROGS} ${SERVS} ${FreeBSD_PROGS} *~
1.2       misho      47: 
1.3       misho      48: install: ${OS}
1.2       misho      49:        ${INSTALL} -o root -g wheel ${PROGS} ${bindir}

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