File:  [ELWIX - Embedded LightWeight unIX -] / libaitcfg / lib / Makefile.in
Revision 1.2.10.1: download - view: text, annotated - select for diffs - revision graph
Mon Apr 2 09:14:58 2012 UTC (12 years, 1 month ago) by misho
Branches: cfg5_0
Diff to: branchpoint 1.2: preferred, colored
fix Makefile for show version in lib dir

#
# (C) 2008 by Michael Pounov <misho@openbsd-bg.org>
#   AITNET ltd - Sofia/Bulgaria
#
# $Author: misho $
# $Id: Makefile.in,v 1.2.10.1 2012/04/02 09:14:58 misho Exp $
#

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

INSTALL = @INSTALL@

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

all:
	@ln -sf ${LIBSO} ${LIBSO}.${VERS}

depend:

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

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

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