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

#
# (C) 2011 by Michael Pounov <misho@openbsd-bg.org>
#   AITNET ltd - Sofia/Bulgaria
#
# $Author: misho $
# $Id: Makefile,v 1.1.1.1.2.1 2011/11/22 20:22:57 misho Exp $
#

prefix = /usr/local
exec_prefix = ${prefix}
libdir = ${exec_prefix}/lib

INSTALL = /usr/bin/install -c

VERS = 1.0
LIBSO = libaitmqtt.so
LIBA = libaitmqtt.a
RTLM_DB = mqtt_db.so

all:
	@ln -sf ${LIBSO} ${LIBSO}.${VERS}

depend:

clean:
	@rm -f ${LIBSO} ${LIBA} ${LIBSO}.${VERS} *~ ${RTLM_DB}

install:
	${INSTALL} ${LIBA} ${libdir}
	${INSTALL} ${LIBSO} ${libdir}
	@ln -fs ${libdir}/${LIBSO} ${libdir}/${LIBSO}.${VERS}

	${INSTALL} -d ${libdir}/mqtt
	${INSTALL} ${RTLM_DB} ${libdir}/mqtt

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