File:  [ELWIX - Embedded LightWeight unIX -] / ansh / bin / Attic / Makefile
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Tue Oct 4 22:37:46 2011 UTC (12 years, 9 months ago) by misho
Branches: misho
CVS tags: start, ansh1_0
ansh ELWIX remote managment

#
# (C) 2011 AITnet - Sofia/Bulgaria - <misho@openbsd-bg.org>
# by Michael Pounov <misho@elwix.org>
#
# $Author: misho $
# $Id: Makefile,v 1.1.1.1 2011/10/04 22:37:46 misho Exp $
#

prefix = /usr/local
exec_prefix = ${prefix}
bindir = ${exec_prefix}/bin
sbindir = ${exec_prefix}/sbin

OS = FreeBSD

INSTALL = /usr/bin/install -c

PROGS = ansh3 ansh
SERVS = ansh3d anshd

all:

depend:

clean:
	rm -f ${PROGS} ${SERVS}

install:
	${INSTALL} -d ${bindir}
	${INSTALL} -d ${sbindir}
	${INSTALL} -o root -g wheel ${PROGS} ${bindir}
	${INSTALL} -o root -g wheel ${SERVS} ${sbindir}

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