File:  [ELWIX - Embedded LightWeight unIX -] / libaitcfg / lib / Makefile.in
Revision 1.2: download - view: text, annotated - select for diffs - revision graph
Wed Sep 9 09:07:31 2009 UTC (14 years, 8 months ago) by misho
Branches: MAIN
CVS tags: cfg5_0, cfg4_1, cfg4_0, cfg3_2, cfg3_1, HEAD, CFG4_0, CFG3_2, CFG3_1, CFG3_0
prepare ver

    1: #
    2: # (C) 2008 by Michael Pounov <misho@openbsd-bg.org>
    3: #   AITNET ltd - Sofia/Bulgaria
    4: #
    5: # $Author: misho $
    6: # $Id: Makefile.in,v 1.2 2009/09/09 09:07:31 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 = @PACKAGE_NAME@.so
   17: LIBA = @PACKAGE_NAME@.a
   18: 
   19: all:
   20: 
   21: depend:
   22: 
   23: clean:
   24: 	@rm -f ${LIBSO} ${LIBA} *~
   25: 
   26: install:
   27: 	${INSTALL} ${LIBA} ${libdir}
   28: 	${INSTALL} ${LIBSO} ${libdir}
   29: 	@ln -fs ${libdir}/${LIBSO} ${libdir}/${LIBSO}.${VERS}

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