File:  [ELWIX - Embedded LightWeight unIX -] / libaitsched / lib / Makefile.in
Revision 1.3.24.1: download - view: text, annotated - select for diffs - revision graph
Mon Aug 19 20:10:48 2024 UTC (2 days, 9 hours ago) by misho
Branches: sched8_4
Diff to: branchpoint 1.3: preferred, colored
FreeBSD ldconfig

#
# (C) 2011 by Michael Pounov <misho@openbsd-bg.org>
#   AITNET ltd - Sofia/Bulgaria
#
# $Author: misho $
# $Id: Makefile.in,v 1.3.24.1 2024/08/19 20:10:48 misho Exp $
#
prefix = @prefix@
exec_prefix = @exec_prefix@
libdir = @libdir@

INSTALL = @INSTALL@

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

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

depend:

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

install:
	${INSTALL} -d ${prefix}
	${INSTALL} -d ${libdir}
	${INSTALL} ${LIBA} ${libdir}
	${INSTALL} ${LIBSO} ${libdir}
	@ln -fs ${libdir}/${LIBSO} ${libdir}/${LIBSO}.${VERS}
	@ln -fs ${libdir}/${LIBSO} ${libdir}/${LIBSO}.`echo ${VERS} | cut -d '.' -f 1`

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