Facility for two types of depend. tail-type (1) of include-type (2).
[idzebra-moved-to-github.git] / isam / Makefile
index 2242181..3be9079 100644 (file)
@@ -3,7 +3,7 @@ INCLUDE=-I../include
 CFLAGS=-g -Wall -pedantic
 DEFS=$(INCLUDE)
 LIB=../lib/isam.a
-PO = isutil.o isam.o
+PO = isam.o isutil.o rootblk.o memory.o
 CPP=cc -E
 
 all: $(LIB)
@@ -26,9 +26,19 @@ $(LIB): $(PO)
 clean:
        rm -f *.[oa] $(TPROG) core mon.out gmon.out errlist isam-test
 
-dep depend:
-       $(CPP) $(INCLUDE) -M *.c >.depend
+depend: depend2
+
+depend1:
+       mv Makefile Makefile.tmp
+       sed '/^#Depend/q' <Makefile.tmp >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