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, unified
move to new binary

    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.1.1.1.2.2 2011/12/20 16:04:34 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
   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>