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 (4 months, 3 weeks ago) by misho
Branches: MAIN
CVS tags: rpc9_6, RPC9_5, HEAD
Version 9.5

    1: #
    2: # (C) 2010 by Michael Pounov <misho@openbsd-bg.org>
    3: #   AITNET ltd - Sofia/Bulgaria
    4: #
    5: # $Author: misho $
    6: # $Id: Makefile.in,v 1.4 2024/03/20 17:32:30 misho Exp $
    7: #
    8: 
    9: prefix = @prefix@
   10: exec_prefix = @exec_prefix@
   11: libdir = @libdir@
   12: 
   13: INSTALL = @INSTALL@
   14: 
   15: VERS = @PACKAGE_VERSION@
   16: LIBSO = libaitrpc.so
   17: LIBA = libaitrpc.a
   18: LIBSO_CLI = libaitrpc_cli.so
   19: LIBA_CLI = libaitrpc_cli.a
   20: 
   21: all: allc
   22: 
   23: allc:
   24: 	ln -sf ${LIBSO_CLI} ${LIBSO_CLI}.${VERS}
   25: 
   26: alls:
   27: 	ln -sf ${LIBSO} ${LIBSO}.${VERS}
   28: 
   29: depend:
   30: 
   31: depends:
   32: 
   33: clean:
   34: 	@rm -f ${LIBSO} ${LIBA} ${LIBSO}.${VERS} ${LIBA_CLI} ${LIBSO_CLI} ${LIBSO_CLI}.${VERS} *~
   35: 
   36: install: installc
   37: 
   38: installc:
   39: 	${INSTALL} -d ${prefix}
   40: 	${INSTALL} -d ${libdir}
   41: 	${INSTALL} ${LIBA_CLI} ${LIBSO_CLI} ${libdir}
   42: 	ln -fs ${libdir}/${LIBSO_CLI} ${libdir}/${LIBSO_CLI}.${VERS}
   43: 
   44: installs:
   45: 	${INSTALL} ${LIBA} ${LIBSO} ${libdir}
   46: 	ln -fs ${libdir}/${LIBSO} ${libdir}/${LIBSO}.${VERS}

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