File:  [ELWIX - Embedded LightWeight unIX -] / mqtt / lib / Makefile.in
Revision 1.2: download - view: text, annotated - select for diffs - revision graph
Tue Jul 3 12:46:00 2012 UTC (11 years, 11 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!

    1: #
    2: # (C) 2011 by Michael Pounov <misho@openbsd-bg.org>
    3: #   AITNET ltd - Sofia/Bulgaria
    4: #
    5: # $Author: misho $
    6: # $Id: Makefile.in,v 1.2 2012/07/03 12:46:00 misho Exp $
    7: #
    8: prefix = @prefix@
    9: exec_prefix = @exec_prefix@
   10: libdir = @libdir@
   11: 
   12: INSTALL = @INSTALL@
   13: 
   14: RTLM_PUB = mqtt_pub.so
   15: RTLM_ACC = mqtt_acc.so
   16: RTLM_LOG = mqtt_log.so
   17: 
   18: all:
   19: 
   20: depend:
   21: 
   22: clean:
   23: 	@rm -f *~ ${RTLM_PUB} ${RTLM_ACC} ${RTLM_LOG}
   24: 
   25: install:
   26: 	${INSTALL} -d ${libdir}/mqtt
   27: 	${INSTALL} ${RTLM_PUB} ${libdir}/mqtt
   28: 	${INSTALL} ${RTLM_ACC} ${libdir}/mqtt
   29: 	${INSTALL} ${RTLM_LOG} ${libdir}/mqtt

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