File:  [ELWIX - Embedded LightWeight unIX -] / libaitrpc / lib / Makefile.in
Revision 1.2.64.2: download - view: text, annotated - select for diffs - revision graph
Thu Jul 2 21:33:25 2015 UTC (9 years ago) by misho
Branches: rpc9_1
Diff to: branchpoint 1.2: preferred, unified
fix problem with retcode 1

#
# (C) 2010 by Michael Pounov <misho@openbsd-bg.org>
#   AITNET ltd - Sofia/Bulgaria
#
# $Author: misho $
# $Id: Makefile.in,v 1.2.64.2 2015/07/02 21:33:25 misho Exp $
#

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

ONLY_CLI = @ONLY_CLI@

INSTALL = @INSTALL@ -v

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

all:
	@[ X"${ONLY_CLI}" != X"no" ] || ln -sf ${LIBSO} ${LIBSO}.${VERS}
	@ln -sf ${LIBSO_CLI} ${LIBSO_CLI}.${VERS}

depend:

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

install:
	@[ X"${ONLY_CLI}" != X"no" ] || ${INSTALL} ${LIBA} ${LIBSO} ${libdir} && \
		ln -fs ${libdir}/${LIBSO} ${libdir}/${LIBSO}.${VERS}
	@${INSTALL} ${LIBA_CLI} ${LIBSO_CLI} ${libdir} && \
		ln -fs ${libdir}/${LIBSO_CLI} ${libdir}/${LIBSO_CLI}.${VERS}

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