File:  [ELWIX - Embedded LightWeight unIX -] / mqtt / lib / Attic / Makefile
Revision 1.1.1.1.2.2: download - view: text, annotated - select for diffs - revision graph
Tue Nov 22 21:12:52 2011 UTC (12 years, 7 months ago) by misho
Branches: mqtt1_0
Diff to: branchpoint 1.1.1.1: preferred, unified
add new files for new rtlm modules

    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/11/22 21:12:52 misho Exp $
    7: #
    8: 
    9: prefix = /usr/local
   10: exec_prefix = ${prefix}
   11: libdir = ${exec_prefix}/lib
   12: 
   13: INSTALL = /usr/bin/install -c
   14: 
   15: VERS = 1.0
   16: LIBSO = libaitmqtt.so
   17: LIBA = libaitmqtt.a
   18: 
   19: RTLM_PUB = mqtt_pub.so
   20: RTLM_ACC = mqtt_acc.so
   21: 
   22: all:
   23: 	@ln -sf ${LIBSO} ${LIBSO}.${VERS}
   24: 
   25: depend:
   26: 
   27: clean:
   28: 	@rm -f ${LIBSO} ${LIBA} ${LIBSO}.${VERS} *~ ${RTLM_PUB} ${RTLM_ACC}
   29: 
   30: install:
   31: 	${INSTALL} ${LIBA} ${libdir}
   32: 	${INSTALL} ${LIBSO} ${libdir}
   33: 	@ln -fs ${libdir}/${LIBSO} ${libdir}/${LIBSO}.${VERS}
   34: 
   35: 	${INSTALL} -d ${libdir}/mqtt
   36: 	${INSTALL} ${RTLM_PUB} ${libdir}/mqtt
   37: 	${INSTALL} ${RTLM_ACC} ${libdir}/mqtt

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