Annotation of ansh/bin/Makefile, revision 1.1.1.1
1.1 misho 1: #
2: # (C) 2011 AITnet - Sofia/Bulgaria - <misho@openbsd-bg.org>
3: # by Michael Pounov <misho@elwix.org>
4: #
5: # $Author: misho $
6: # $Id: Makefile.in,v 1.2.2.2 2011/06/08 14:04:07 misho Exp $
7: #
8:
9: prefix = /usr/local
10: exec_prefix = ${prefix}
11: bindir = ${exec_prefix}/bin
12: sbindir = ${exec_prefix}/sbin
13:
14: OS = FreeBSD
15:
16: INSTALL = /usr/bin/install -c
17:
18: PROGS = ansh3 ansh
19: SERVS = ansh3d anshd
20:
21: all:
22:
23: depend:
24:
25: clean:
26: rm -f ${PROGS} ${SERVS}
27:
28: install:
29: ${INSTALL} -d ${bindir}
30: ${INSTALL} -d ${sbindir}
31: ${INSTALL} -o root -g wheel ${PROGS} ${bindir}
32: ${INSTALL} -o root -g wheel ${SERVS} ${sbindir}
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>