File:  [ELWIX - Embedded LightWeight unIX -] / libaitcfg / lib / Makefile.in
Revision 1.2.8.1: download - view: text, annotated - select for diffs - revision graph
Thu Jun 16 19:45:00 2011 UTC (12 years, 11 months ago) by misho
Branches: cfg4_1
Diff to: branchpoint 1.2: preferred, unified
added symlink

    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.8.1 2011/06/16 19:45:00 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: 	@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>