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

1.1.2.1 ! 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,v 1.1.1.1.2.15 2010/10/27 13:10:40 misho Exp $
        !             7: #
        !             8: 
        !             9: bindir = /usr/local/bin
        !            10: sbindir = /usr/local/sbin
        !            11: 
        !            12: INSTALL = install
        !            13: 
        !            14: PROGS = cfexec updimg get1steth dpatch rcd direr dircmp xmler clog wdog athctl \
        !            15:        dwds
        !            16: SERVS = syslogd
        !            17: 
        !            18: all:
        !            19: 
        !            20: depend:
        !            21: 
        !            22: clean:
        !            23:        rm -f ${PROGS} ${SERVS}
        !            24: 
        !            25: install:
        !            26:        ${INSTALL} -o root -g wheel ${PROGS} ${bindir}
        !            27:        ${INSTALL} -o root -g wheel ${SERVS} ${sbindir}

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