File:  [ELWIX - Embedded LightWeight unIX -] / mqtt / bin / Attic / Makefile
Revision 1.3: download - view: text, annotated - select for diffs - revision graph
Tue Jul 3 09:02:49 2012 UTC (11 years, 11 months ago) by misho
Branches: MAIN
CVS tags: mqtt1_2, MQTT1_1, HEAD
version 1.1

#
# (C) 2011 by Michael Pounov <misho@openbsd-bg.org>
#   AITNET ltd - Sofia/Bulgaria
#
# $Author: misho $
# $Id: Makefile,v 1.3 2012/07/03 09:02:49 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 mqtt_ping
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>