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 ago) by misho
Branches: elwix5_7
Diff to: branchpoint 1.1.1.1: preferred, colored
ensure existence of includedir, libdir and prefix

#
# (C) 2010 by Michael Pounov <misho@elwix.org>
#   AITNET ltd - Sofia/Bulgaria
#
# $Author: misho $
# $Id: Makefile.in,v 1.1.1.1.126.1 2022/12/05 20:51:18 misho Exp $
#

prefix = @prefix@
exec_prefix = @exec_prefix@
includedir = @includedir@

INSTALL = @INSTALL@

all:

depend:

clean:
	@rm -f *~ elwix/*~

install:
	${INSTALL} -d ${prefix}
	${INSTALL} -d ${includedir}
	${INSTALL} -d ${includedir}/elwix
	${INSTALL} elwix.h ${includedir}
	${INSTALL} elwix/*.h ${includedir}/elwix

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