#
# (C) 2011 by Michael Pounov <misho@openbsd-bg.org>
# AITNET ltd - Sofia/Bulgaria
#
# $Author: misho $
# $Id: Makefile,v 1.1 2011/11/07 08:47:16 misho Exp $
#
prefix = /usr/local
exec_prefix = ${prefix}
bindir = ${exec_prefix}/bin
sbindir = ${exec_prefix}/sbin
INSTALL = /usr/bin/install -c
PROGS = mqtt
SERVS = mqttd
all:
depend:
clean:
rm -f ${PROGS} ${SERVS}
install:
${INSTALL} -d ${bindir}
${INSTALL} -d ${sbindir}
${INSTALL} -o root -g wheel -m 555 ${PROGS} ${bindir}
${INSTALL} -o root -g wheel -m 555 ${SERVS} ${sbindir}
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>