File:  [ELWIX - Embedded LightWeight unIX -] / ansh / bin / Makefile.in
Revision 1.2: download - view: text, annotated - select for diffs - revision graph
Mon Oct 17 20:14:02 2011 UTC (12 years, 8 months ago) by misho
Branches: MAIN
CVS tags: ansh2_1, ansh2_0, ansh1_3, ansh1_2, ansh1_1, HEAD, ANSH2_0, ANSH1_3, ANSH1_2, ANSH1_1, ANSH1_0
ver 1.0

    1: #
    2: # (C) 2011 by Michael Pounov <misho@openbsd-bg.org>
    3: #   AITNET ltd - Sofia/Bulgaria
    4: #
    5: # $Author: misho $
    6: # $Id: Makefile.in,v 1.2 2011/10/17 20:14:02 misho Exp $
    7: #
    8: prefix = @prefix@
    9: exec_prefix = @exec_prefix@
   10: bindir = @bindir@
   11: sbindir = @sbindir@
   12: 
   13: INSTALL = @INSTALL@
   14: 
   15: PROGS = ansh3 ansh
   16: SERVS = ansh3d anshd
   17: 
   18: 
   19: all:
   20: 
   21: depend:
   22: 
   23: clean:
   24: 	rm -f ${PROGS} ${SERVS}
   25: 
   26: install:
   27: 	${INSTALL} -d ${bindir}
   28: 	${INSTALL} -d ${sbindir}
   29: 	${INSTALL} -o root -g wheel -m 4555 ${PROGS} ${bindir}
   30: 	${INSTALL} -o root -g wheel -m 555 ${SERVS} ${sbindir}

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