File:  [ELWIX - Embedded LightWeight unIX -] / libaitcfg / lib / Makefile.in
Revision 1.3.42.1: download - view: text, annotated - select for diffs - revision graph
Mon Dec 5 21:10:44 2022 UTC (16 months, 3 weeks ago) by misho
Branches: cfg9_2
Diff to: branchpoint 1.3: preferred, colored
ensure existence of includedir,libdir and prefix

#
# (C) 2008 by Michael Pounov <misho@openbsd-bg.org>
#   AITNET ltd - Sofia/Bulgaria
#
# $Author: misho $
# $Id: Makefile.in,v 1.3.42.1 2022/12/05 21:10:44 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} -d ${prefix}
	${INSTALL} -d ${libdir}
	${INSTALL} ${LIBA} ${libdir}
	${INSTALL} ${LIBSO} ${libdir}
	@ln -fs ${libdir}/${LIBSO} ${libdir}/${LIBSO}.${VERS}

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