# # (C) 2011 AITnet - Sofia/Bulgaria - # by Michael Pounov # # $Author: misho $ # $Id: Makefile,v 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}