Annotation of mqtt/lib/Makefile, revision 1.1
1.1 ! misho 1: #
! 2: # (C) 2011 by Michael Pounov <misho@openbsd-bg.org>
! 3: # AITNET ltd - Sofia/Bulgaria
! 4: #
! 5: # $Author: misho $
! 6: # $Id: Makefile.in,v 1.3 2011/09/07 13:11:55 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: all:
! 20: @ln -sf ${LIBSO} ${LIBSO}.${VERS}
! 21:
! 22: depend:
! 23:
! 24: clean:
! 25: @rm -f ${LIBSO} ${LIBA} ${LIBSO}.${VERS} *~
! 26:
! 27: install:
! 28: ${INSTALL} ${LIBA} ${libdir}
! 29: ${INSTALL} ${LIBSO} ${libdir}
! 30: @ln -fs ${libdir}/${LIBSO} ${libdir}/${LIBSO}.${VERS}
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>