File:  [ELWIX - Embedded LightWeight unIX -] / mqtt / lib / Attic / Makefile
Revision 1.3: download - view: text, annotated - select for diffs - revision graph
Tue Jul 3 09:02:50 2012 UTC (11 years, 11 months ago) by misho
Branches: MAIN
CVS tags: mqtt1_2, MQTT1_1, HEAD
version 1.1

#
# (C) 2011 by Michael Pounov <misho@openbsd-bg.org>
#   AITNET ltd - Sofia/Bulgaria
#
# $Author: misho $
# $Id: Makefile,v 1.3 2012/07/03 09:02:50 misho Exp $
#

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

INSTALL = /usr/bin/install -c

RTLM_PUB = mqtt_pub.so
RTLM_ACC = mqtt_acc.so
RTLM_LOG = mqtt_log.so

all:

depend:

clean:
	@rm -f *~ ${RTLM_PUB} ${RTLM_ACC} ${RTLM_LOG}

install:
	${INSTALL} -d ${libdir}/mqtt
	${INSTALL} ${RTLM_PUB} ${libdir}/mqtt
	${INSTALL} ${RTLM_ACC} ${libdir}/mqtt
	${INSTALL} ${RTLM_LOG} ${libdir}/mqtt

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