Move knowledge about doing "maintainer-clean" into script in microcode
authorChris Hanson <org/chris-hanson/cph>
Wed, 6 Dec 2000 05:54:17 +0000 (05:54 +0000)
committerChris Hanson <org/chris-hanson/cph>
Wed, 6 Dec 2000 05:54:17 +0000 (05:54 +0000)
directory.

v7/src/Makefile
v7/src/microcode/Mclean.sh

index e702141e4f973bd54093dcd6f0975add59e9356e..6da0efee3ce6417331244b30c52dac4b1ed37320 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: Makefile,v 1.9 2000/12/06 05:33:27 cph Exp $
+# $Id: Makefile,v 1.10 2000/12/06 05:52:48 cph Exp $
 #
 # Copyright (c) 2000 Massachusetts Institute of Technology
 #
@@ -54,10 +54,6 @@ maintainer-clean:
                (cd $${SUBDIR} && $(MAKE) $@); \
            fi; \
        done
-       @if test ! -f microcode/Makefile && test -f microcode/configure; then \
-           (cd microcode && ./configure); \
-       fi
-       echo "making $@ in microcode"
-       @(cd microcode && $(MAKE) $@)
+       (cd microcode && ./Mclean.sh)
 
 .PHONY: all setup tags TAGS mostlyclean clean distclean maintainer-clean
index e653d884388899faafdf1d5b6010049b24c4c557..760d97d204860012aed8a9f128e73a105a16b630 100755 (executable)
@@ -1,6 +1,6 @@
 #!/bin/sh
 
-# $Id: Mclean.sh,v 1.1 2000/12/06 05:52:40 cph Exp $
+# $Id: Mclean.sh,v 1.2 2000/12/06 05:54:17 cph Exp $
 #
 # Copyright (c) 2000 Massachusetts Institute of Technology
 #
@@ -21,4 +21,4 @@
 # Program to do "maintainer-clean" rule.
 
 test ! -f Makefile && test -f configure && ./configure
-make maintainer-clean
+test -f Makefile && make maintainer-clean