Annotation of embedtools/bin/Makefile, revision 1.1

1.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.in,v 1.1.1.1 2009/04/22 22:38:22 misho Exp $
        !             7: #
        !             8: 
        !             9: bindir = /usr/local/bin
        !            10: 
        !            11: INSTALL = install
        !            12: 
        !            13: PROGS = cfexec
        !            14: 
        !            15: all:
        !            16: 
        !            17: depend:
        !            18: 
        !            19: clean:
        !            20:        rm -f ${PROGS}
        !            21: 
        !            22: install:
        !            23:        ${INSTALL} -o root -g wheel ${PROGS} ${bindir}

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