File:  [ELWIX - Embedded LightWeight unIX -] / mqtt / lib / Attic / Makefile
Revision 1.1: download - view: text, annotated - select for diffs - revision graph
Mon Nov 7 08:47:16 2011 UTC (12 years, 7 months ago) by misho
Branches: MAIN
CVS tags: HEAD
Initial revision

    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 2011/11/07 08:47:16 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>