--- embedtools/bin/Makefile.in 2011/06/08 09:08:43 1.1.2.1 +++ embedtools/bin/Makefile.in 2014/01/28 08:07:47 1.3.4.6 @@ -3,25 +3,39 @@ # by Michael Pounov # # $Author: misho $ -# $Id: Makefile.in,v 1.1.2.1 2011/06/08 09:08:43 misho Exp $ +# $Id: Makefile.in,v 1.3.4.6 2014/01/28 08:07:47 misho Exp $ # -bindir = /usr/local/bin -sbindir = /usr/local/sbin +prefix = @prefix@ +exec_prefix = @exec_prefix@ +bindir = @bindir@ +sbindir = @sbindir@ -INSTALL = install +OS = @OS@ +MACHINE = @host_cpu@ -PROGS = cfexec updimg get1steth dpatch rcd direr dircmp xmler clog wdog athctl \ - dwds -SERVS = syslogd +INSTALL = @INSTALL@ +PROGS = cfexec updimg get1steth dpatch direr dircmp wdog voucher cfger ube +FreeBSD_PROGS = athctl dwds cfi + +.if ${MACHINE} == "i386" && ${OS} == "FreeBSD" +FreeBSD_PROGS += pceng +.endif + all: +FreeBSD: + ${INSTALL} -o root -g wheel ${FreeBSD_PROGS} ${bindir} + +OpenBSD: + +NetBSD: + depend: clean: - rm -f ${PROGS} ${SERVS} + rm -f ${PROGS} ${SERVS} ${FreeBSD_PROGS} -install: +install: ${OS} ${INSTALL} -o root -g wheel ${PROGS} ${bindir} - ${INSTALL} -o root -g wheel ${SERVS} ${sbindir}