File:  [ELWIX - Embedded LightWeight unIX -] / mqtt / bin / Makefile.in
Revision 1.2: download - view: text, annotated - select for diffs - revision graph
Tue Jul 3 12:46:00 2012 UTC (11 years, 10 months ago) by misho
Branches: MAIN
CVS tags: mqtt2_1, mqtt2_0, mqtt1_3, MQTT2_0, MQTT1_3, MQTT1_2, HEAD
version 1.2
first MQTT service release!

#
# (C) 2011 by Michael Pounov <misho@openbsd-bg.org>
#   AITNET ltd - Sofia/Bulgaria
#
# $Author: misho $
# $Id: Makefile.in,v 1.2 2012/07/03 12:46:00 misho Exp $
#
prefix = @prefix@
exec_prefix = @exec_prefix@
bindir = @bindir@
sbindir = @sbindir@

INSTALL = @INSTALL@

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>