File:  [ELWIX - Embedded LightWeight unIX -] / mqtt / lib / Attic / Makefile
Revision 1.1.1.1.2.1: download - view: text, annotated - select for diffs - revision graph
Tue Nov 22 20:22:57 2011 UTC (12 years, 7 months ago) by misho
Branches: mqtt1_0
Diff to: branchpoint 1.1.1.1: preferred, unified
start RTLM module for db

    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.1 2011/11/22 20:22:57 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: RTLM_DB = mqtt_db.so
   19: 
   20: all:
   21: 	@ln -sf ${LIBSO} ${LIBSO}.${VERS}
   22: 
   23: depend:
   24: 
   25: clean:
   26: 	@rm -f ${LIBSO} ${LIBA} ${LIBSO}.${VERS} *~ ${RTLM_DB}
   27: 
   28: install:
   29: 	${INSTALL} ${LIBA} ${libdir}
   30: 	${INSTALL} ${LIBSO} ${libdir}
   31: 	@ln -fs ${libdir}/${LIBSO} ${libdir}/${LIBSO}.${VERS}
   32: 
   33: 	${INSTALL} -d ${libdir}/mqtt
   34: 	${INSTALL} ${RTLM_DB} ${libdir}/mqtt

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