File:  [ELWIX - Embedded LightWeight unIX -] / mqtt / bin / Attic / Makefile
Revision 1.1.1.1.2.2: download - view: text, annotated - select for diffs - revision graph
Tue Dec 20 16:04:34 2011 UTC (12 years, 6 months ago) by misho
Branches: mqtt1_0
Diff to: branchpoint 1.1.1.1: preferred, colored
move to new binary

#
# (C) 2011 by Michael Pounov <misho@openbsd-bg.org>
#   AITNET ltd - Sofia/Bulgaria
#
# $Author: misho $
# $Id: Makefile,v 1.1.1.1.2.2 2011/12/20 16:04:34 misho Exp $
#
prefix = /usr/local
exec_prefix = ${prefix}
bindir = ${exec_prefix}/bin
sbindir = ${exec_prefix}/sbin

INSTALL = /usr/bin/install -c

PROGS = mqtt_subs mqtt_pub
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>