Added Make distclean. This cleans up the system and removes
authorAdam Dickmeiss <adam@indexdata.dk>
Tue, 20 Sep 1994 09:02:30 +0000 (09:02 +0000)
committerAdam Dickmeiss <adam@indexdata.dk>
Tue, 20 Sep 1994 09:02:30 +0000 (09:02 +0000)
dependancy lines in sub-Makefiles. This simplifies preparation
of a distribution of alex.

Makefile

index 588d2cf..b8376bb 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
 # Copyright (C) 1994, Index Data I/S 
 # All rights reserved.
 # Sebastian Hammer, Adam Dickmeiss
-# $Id: Makefile,v 1.11 1994-09-12 08:01:41 quinn Exp $
+# $Id: Makefile,v 1.12 1994-09-20 09:02:30 adam Exp $
 
 SHELL=/bin/sh
 SUBDIR=util bfile dict isam
@@ -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]'`