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

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 $
        !             6: # $Id: Makefile.in,v 1.1.2.2 2011/06/08 09:11:57 misho Exp $
        !             7: #
        !             8: 
        !             9: prefix = @prefix@
        !            10: exec_prefix = @exec_prefix@
        !            11: bindir = @bindir@
        !            12: sbindir = @sbindir@
        !            13: 
        !            14: INSTALL = @INSTALL@
        !            15: 
        !            16: PROGS = cfexec updimg get1steth dpatch rcd direr dircmp xmler clog wdog athctl \
        !            17:        dwds
        !            18: SERVS = syslogd
        !            19: 
        !            20: all:
        !            21: 
        !            22: depend:
        !            23: 
        !            24: clean:
        !            25:        rm -f ${PROGS} ${SERVS}
        !            26: 
        !            27: install:
        !            28:        ${INSTALL} -o root -g wheel ${PROGS} ${bindir}
        !            29:        ${INSTALL} -o root -g wheel ${SERVS} ${sbindir}

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