From: Adam Dickmeiss Date: Thu, 22 Sep 1994 10:45:14 +0000 (+0000) Subject: Facility for two types of depend. tail-type (1) of include-type (2). X-Git-Tag: ZEBRA.1.0~854 X-Git-Url: http://git.indexdata.com/?p=idzebra-moved-to-github.git;a=commitdiff_plain;h=ddfc9499c27bb4b90797bab12868f629afee34e3 Facility for two types of depend. tail-type (1) of include-type (2). --- diff --git a/isam/Makefile b/isam/Makefile index 38c6a66..3be9079 100644 --- a/isam/Makefile +++ b/isam/Makefile @@ -26,9 +26,19 @@ $(LIB): $(PO) clean: rm -f *.[oa] $(TPROG) core mon.out gmon.out errlist isam-test -dep depend: +depend: depend2 + +depend1: mv Makefile Makefile.tmp sed '/^#Depend/q' Makefile $(CPP) $(INCLUDE) -M *.c >>Makefile + -rm Makefile.tmp + +depend2: + $(CPP) $(INCLUDE) -M *.c >.depend + +ifeq (.depend,$(wildcard .depend)) +include .depend +endif #Depend --- DOT NOT DELETE THIS LINE diff --git a/util/Makefile b/util/Makefile index f32eb89..477739c 100644 --- a/util/Makefile +++ b/util/Makefile @@ -1,7 +1,7 @@ # Copyright (C) 1994, Index Data I/S # All rights reserved. # Sebastian Hammer, Adam Dickmeiss -# $Id: Makefile,v 1.13 1994-09-20 09:03:03 adam Exp $ +# $Id: Makefile,v 1.14 1994-09-22 10:45:19 adam Exp $ SHELL=/bin/sh INCLUDE=-I../include @@ -31,9 +31,19 @@ $(LIB): $(PO) clean: rm -f *.[oa] opt-test res-test core mon.out gmon.out errlist -dep depend: +depend: depend2 + +depend1: mv Makefile Makefile.tmp sed '/^#Depend/q' Makefile $(CPP) $(INCLUDE) -M *.c >>Makefile + -rm Makefile.tmp + +depend2: + $(CPP) $(INCLUDE) -M *.c >.depend + +ifeq (.depend,$(wildcard .depend)) +include .depend +endif #Depend --- DOT NOT DELETE THIS LINE