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

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.4     ! misho       6: # $Id: Makefile.in,v 1.3.4.9 2014/02/05 10:09:05 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.3       misho      20: FreeBSD_PROGS = athctl dwds cfi
1.2       misho      21: 
1.4     ! misho      22: .if ${MACHINE} == "i386" && ${OS} == "FreeBSD"
        !            23: FreeBSD_PROGS += pceng
        !            24: .endif
        !            25: 
1.2       misho      26: all:
                     27: 
1.3       misho      28: FreeBSD:
                     29:        ${INSTALL} -o root -g wheel ${FreeBSD_PROGS} ${bindir}
                     30: 
                     31: OpenBSD:
                     32: 
                     33: NetBSD:
                     34: 
1.2       misho      35: depend:
                     36: 
                     37: clean:
1.3       misho      38:        rm -f ${PROGS} ${SERVS} ${FreeBSD_PROGS}
1.2       misho      39: 
1.3       misho      40: install: ${OS}
1.2       misho      41:        ${INSTALL} -o root -g wheel ${PROGS} ${bindir}

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