File:  [ELWIX - Embedded LightWeight unIX -] / libaitrpc / lib / Makefile.in
Revision 1.3.8.1: download - view: text, annotated - select for diffs - revision graph
Mon Dec 5 21:01:55 2022 UTC (2 years, 2 months ago) by misho
Branches: rpc9_5
Diff to: branchpoint 1.3: preferred, unified
ensure existence of includedir, libdir and prefix

#
# (C) 2010 by Michael Pounov <misho@openbsd-bg.org>
#   AITNET ltd - Sofia/Bulgaria
#
# $Author: misho $
# $Id: Makefile.in,v 1.3.8.1 2022/12/05 21:01:55 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>