File:  [ELWIX - Embedded LightWeight unIX -] / mqtt / bin / Attic / Makefile
Revision 1.2.2.1: download - view: text, annotated - select for diffs - revision graph
Mon Jan 30 13:39:22 2012 UTC (12 years, 5 months ago) by misho
Branches: mqtt1_1
add ping support to MQTT project

    1: #
    2: # (C) 2011 by Michael Pounov <misho@openbsd-bg.org>
    3: #   AITNET ltd - Sofia/Bulgaria
    4: #
    5: # $Author: misho $
    6: # $Id: Makefile,v 1.2.2.1 2012/01/30 13:39:22 misho Exp $
    7: #
    8: prefix = /usr/local
    9: exec_prefix = ${prefix}
   10: bindir = ${exec_prefix}/bin
   11: sbindir = ${exec_prefix}/sbin
   12: 
   13: INSTALL = /usr/bin/install -c
   14: 
   15: PROGS = mqtt_subs mqtt_pub mqtt_ping
   16: SERVS = mqttd
   17: 
   18: 
   19: all:
   20: 
   21: depend:
   22: 
   23: clean:
   24: 	rm -f ${PROGS} ${SERVS}
   25: 
   26: install:
   27: 	${INSTALL} -d ${bindir}
   28: 	${INSTALL} -d ${sbindir}
   29: 	${INSTALL} -o root -g wheel -m 555 ${PROGS} ${bindir}
   30: 	${INSTALL} -o root -g wheel -m 555 ${SERVS} ${sbindir}

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>