File:  [ELWIX - Embedded LightWeight unIX -] / embedtools / bin / Makefile.in
Revision 1.5: download - view: text, annotated - select for diffs - revision graph
Sat Feb 8 20:57:16 2014 UTC (10 years, 4 months ago) by misho
Branches: MAIN
CVS tags: tools3_0, tools2_9, tools2_8, tools2_7, TOOLS2_9, TOOLS2_8, TOOLS2_7, TOOLS2_6, HEAD
version 2.6

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

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