File:  [ELWIX - Embedded LightWeight unIX -] / libaitrpc / lib / Makefile.in
Revision 1.4: download - view: text, annotated - select for diffs - revision graph
Wed Mar 20 17:32:30 2024 UTC (2 months ago) by misho
Branches: MAIN
CVS tags: rpc9_6, RPC9_5, HEAD
Version 9.5

#
# (C) 2010 by Michael Pounov <misho@openbsd-bg.org>
#   AITNET ltd - Sofia/Bulgaria
#
# $Author: misho $
# $Id: Makefile.in,v 1.4 2024/03/20 17:32:30 misho Exp $
#

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

INSTALL = @INSTALL@

VERS = @PACKAGE_VERSION@
LIBSO = libaitrpc.so
LIBA = libaitrpc.a
LIBSO_CLI = libaitrpc_cli.so
LIBA_CLI = libaitrpc_cli.a

all: allc

allc:
	ln -sf ${LIBSO_CLI} ${LIBSO_CLI}.${VERS}

alls:
	ln -sf ${LIBSO} ${LIBSO}.${VERS}

depend:

depends:

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

install: installc

installc:
	${INSTALL} -d ${prefix}
	${INSTALL} -d ${libdir}
	${INSTALL} ${LIBA_CLI} ${LIBSO_CLI} ${libdir}
	ln -fs ${libdir}/${LIBSO_CLI} ${libdir}/${LIBSO_CLI}.${VERS}

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

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