File:  [ELWIX - Embedded LightWeight unIX -] / libelwix / inc / Makefile.in
Revision 1.1.1.1.126.1: download - view: text, annotated - select for diffs - revision graph
Mon Dec 5 20:51:18 2022 UTC (17 months, 2 weeks ago) by misho
Branches: elwix5_7
Diff to: branchpoint 1.1.1.1: preferred, unified
ensure existence of includedir, libdir and prefix

    1: #
    2: # (C) 2010 by Michael Pounov <misho@elwix.org>
    3: #   AITNET ltd - Sofia/Bulgaria
    4: #
    5: # $Author: misho $
    6: # $Id: Makefile.in,v 1.1.1.1.126.1 2022/12/05 20:51:18 misho Exp $
    7: #
    8: 
    9: prefix = @prefix@
   10: exec_prefix = @exec_prefix@
   11: includedir = @includedir@
   12: 
   13: INSTALL = @INSTALL@
   14: 
   15: all:
   16: 
   17: depend:
   18: 
   19: clean:
   20: 	@rm -f *~ elwix/*~
   21: 
   22: install:
   23: 	${INSTALL} -d ${prefix}
   24: 	${INSTALL} -d ${includedir}
   25: 	${INSTALL} -d ${includedir}/elwix
   26: 	${INSTALL} elwix.h ${includedir}
   27: 	${INSTALL} elwix/*.h ${includedir}/elwix

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