First version of grepper: grep with error correction.
[idzebra-moved-to-github.git] / util / Makefile
index ef9682c..477739c 100644 (file)
@@ -1,12 +1,12 @@
 # Copyright (C) 1994, Index Data I/S 
 # All rights reserved.
 # Sebastian Hammer, Adam Dickmeiss
-# $Id: Makefile,v 1.10 1994-09-01 17:45:14 adam Exp $
+# $Id: Makefile,v 1.14 1994-09-22 10:45:19 adam Exp $
 
 SHELL=/bin/sh
 INCLUDE=-I../include
 TPROG=opt-test
-CFLAGS=-g -Wall
+CFLAGS=-g -Wall -pedantic
 DEFS=$(INCLUDE)
 LIB=../lib/util.a
 PO = options.o xmalloc.o log.o res.o alexpath.o common.o
@@ -31,9 +31,19 @@ $(LIB): $(PO)
 clean:
        rm -f *.[oa] opt-test res-test core mon.out gmon.out errlist
 
-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