#
# (C) 2011 by Michael Pounov <misho@openbsd-bg.org>
# AITNET ltd - Sofia/Bulgaria
#
# $Author: misho $
# $Id: Makefile,v 1.1.1.1 2011/11/07 08:47:16 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
all:
@ln -sf ${LIBSO} ${LIBSO}.${VERS}
depend:
clean:
@rm -f ${LIBSO} ${LIBA} ${LIBSO}.${VERS} *~
install:
${INSTALL} ${LIBA} ${libdir}
${INSTALL} ${LIBSO} ${libdir}
@ln -fs ${libdir}/${LIBSO} ${libdir}/${LIBSO}.${VERS}
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>