File:  [ELWIX - Embedded LightWeight unIX -] / libaitsync / lib / Makefile.in
Revision 1.2: download - view: text, annotated - select for diffs - revision graph
Sun Jul 22 22:09:47 2012 UTC (11 years, 10 months ago) by misho
Branches: MAIN
CVS tags: sync2_3, sync2_2, sync2_1, sync2_0, sync1_3, sync1_2, SYNC2_2, SYNC2_1, SYNC2_0, SYNC1_3, SYNC1_2, SYNC1_1, HEAD
version 1.1

    1: #
    2: # (C) 2010 by Michael Pounov <misho@openbsd-bg.org>
    3: #   AITNET ltd - Sofia/Bulgaria
    4: #
    5: # $Author: misho $
    6: # $Id: Makefile.in,v 1.2 2012/07/22 22:09:47 misho Exp $
    7: #
    8: 
    9: prefix = @prefix@
   10: exec_prefix = @exec_prefix@
   11: libdir = @libdir@
   12: 
   13: INSTALL = @INSTALL@
   14: 
   15: VERS = @PACKAGE_VERSION@
   16: LIBSO = libaitsync.so
   17: LIBA = libaitsync.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>