Annotation of embedtools/bin/Makefile.in, revision 1.5.8.1
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.1 ! misho 6: # $Id: Makefile.in,v 1.5 2014/02/08 20:57:16 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.1 ! misho 20: FreeBSD_PROGS = athctl dwds cfi epkg
1.2 misho 21:
1.4 misho 22: .if ${MACHINE} == "i386" && ${OS} == "FreeBSD"
23: FreeBSD_PROGS += pceng
24: .endif
25:
1.5 misho 26: .if ${OS} == "FreeBSD"
27: FreeBSD_PROGS += butz
28: .endif
29:
30:
1.2 misho 31: all:
32:
1.3 misho 33: FreeBSD:
34: ${INSTALL} -o root -g wheel ${FreeBSD_PROGS} ${bindir}
35:
36: OpenBSD:
37:
38: NetBSD:
39:
1.2 misho 40: depend:
41:
42: clean:
1.3 misho 43: rm -f ${PROGS} ${SERVS} ${FreeBSD_PROGS}
1.2 misho 44:
1.3 misho 45: install: ${OS}
1.2 misho 46: ${INSTALL} -o root -g wheel ${PROGS} ${bindir}
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>