File:  [ELWIX - Embedded LightWeight unIX -] / libaitrpc / lib / Makefile.in
Revision 1.4.2.1: download - view: text, annotated - select for diffs - revision graph
Wed Aug 21 11:41:37 2024 UTC (6 months ago) by misho
Branches: rpc9_6
Diff to: branchpoint 1.4: preferred, unified
rework config process to satisfy MIPS

#
# (C) 2010 by Michael Pounov <misho@openbsd-bg.org>
#   AITNET ltd - Sofia/Bulgaria
#
# $Author: misho $
# $Id: Makefile.in,v 1.4.2.1 2024/08/21 11:41:37 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}
	@ln -fs ${libdir}/${LIBSO_CLI} ${libdir}/${LIBSO_CLI}.`echo ${VERS} | cut -d '.' -f 1`

installs:
	${INSTALL} ${LIBA} ${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>