File:  [ELWIX - Embedded LightWeight unIX -] / embedtools / bin / Makefile.in
Revision 1.4: download - view: text, annotated - select for diffs - revision graph
Wed Feb 5 15:44:05 2014 UTC (10 years, 4 months ago) by misho
Branches: MAIN
CVS tags: tools2_6, tools2_5, tools2_4, tools2_3, tools2_2, tools2_1, TOOLS2_5, TOOLS2_4, TOOLS2_3, TOOLS2_2, TOOLS2_1, TOOLS2_0, HEAD
version 2.0

    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.4 2014/02/05 15:44:05 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: all:
   27: 
   28: FreeBSD:
   29: 	${INSTALL} -o root -g wheel ${FreeBSD_PROGS} ${bindir}
   30: 
   31: OpenBSD:
   32: 
   33: NetBSD:
   34: 
   35: depend:
   36: 
   37: clean:
   38: 	rm -f ${PROGS} ${SERVS} ${FreeBSD_PROGS}
   39: 
   40: install: ${OS}
   41: 	${INSTALL} -o root -g wheel ${PROGS} ${bindir}

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