Added Make distclean. This cleans up the system and removes
[idzebra-moved-to-github.git] / Makefile
index d336abe..b8376bb 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,10 +1,10 @@
 # Copyright (C) 1994, Index Data I/S 
 # All rights reserved.
 # Sebastian Hammer, Adam Dickmeiss
-# $Id: Makefile,v 1.10 1994-09-02 14:58:38 quinn Exp $
+# $Id: Makefile,v 1.12 1994-09-20 09:02:30 adam Exp $
 
 SHELL=/bin/sh
-SUBDIR=util bfile dict
+SUBDIR=util bfile dict isam
 
 all:
        for i in $(SUBDIR); do cd $$i; if make; then cd ..; else exit 1; fi; done
@@ -16,11 +16,17 @@ clean:
        for i in $(SUBDIR); do (cd $$i; make clean); done
 
 cleanup:
-       rm -f `find $(SUBDIR) -name "*.o" -print`
+       rm -f `find $(SUBDIR) -name "*.[oa]" -print`
        rm -f `find $(SUBDIR) -name "core" -print`
        rm -f `find $(SUBDIR) -name "errlist" -print`
        rm -f `find $(SUBDIR) -name "a.out" -print`
 
+distclean: cleanup clean
+       for i in $(SUBDIR); do (cd $$i; \
+               mv Makefile Makefile.old; \
+               sed '/^#Depend/q' <Makefile.old >Makefile; \
+               rm Makefile.old); done
+               
 wc:
        wc `find . -name '*.[ch]'`