File:  [ELWIX - Embedded LightWeight unIX -] / libaitcfg / lib / Makefile.in
Revision 1.3.42.1: download - view: text, annotated - select for diffs - revision graph
Mon Dec 5 21:10:44 2022 UTC (17 months, 1 week ago) by misho
Branches: cfg9_2
Diff to: branchpoint 1.3: preferred, unified
ensure existence of includedir,libdir and prefix

    1: #
    2: # (C) 2008 by Michael Pounov <misho@openbsd-bg.org>
    3: #   AITNET ltd - Sofia/Bulgaria
    4: #
    5: # $Author: misho $
    6: # $Id: Makefile.in,v 1.3.42.1 2022/12/05 21:10:44 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 = libaitcfg.so
   17: LIBA = libaitcfg.a
   18: 
   19: all:
   20: 	@ln -sf ${LIBSO} ${LIBSO}.${VERS}
   21: 
   22: depend:
   23: 
   24: clean:
   25: 	@rm -f ${LIBSO} ${LIBA} ${LIBSO}.${VERS} *~
   26: 
   27: install:
   28: 	${INSTALL} -d ${prefix}
   29: 	${INSTALL} -d ${libdir}
   30: 	${INSTALL} ${LIBA} ${libdir}
   31: 	${INSTALL} ${LIBSO} ${libdir}
   32: 	@ln -fs ${libdir}/${LIBSO} ${libdir}/${LIBSO}.${VERS}

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