File:  [ELWIX - Embedded LightWeight unIX -] / libaitcfg / lib / Makefile.in
Revision 1.1.2.3: download - view: text, annotated - select for diffs - revision graph
Wed Nov 5 16:55:34 2008 UTC (15 years, 5 months ago) by misho
Branches: cfg3_0
added feature for static lib

#
# (C) 2008 by Michael Pounov <misho@openbsd-bg.org>
#   AITNET ltd - Sofia/Bulgaria
#
# $Author: misho $
# $Id: Makefile.in,v 1.1.2.3 2008/11/05 16:55:34 misho Exp $
#

prefix = @prefix@
exec_prefix = @exec_prefix@
libdir = @libdir@

INSTALL = @INSTALL@

VERS = @PACKAGE_VERSION@
LIBSO = @PACKAGE_NAME@.so
LIBA = @PACKAGE_NAME@.a

all:

depend:

clean:
	@rm -f ${LIBSO} ${LIBA} *~

install:
	${INSTALL} ${LIBA} ${libdir}
	${INSTALL} ${LIBSO} ${libdir}
	@ln -fs ${libdir}/${LIBSO} ${libdir}/${LIBSO}.${VERS}

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