Move setup stuff to shell script. This must be possible to do without
authorChris Hanson <org/chris-hanson/cph>
Wed, 6 Dec 2000 02:42:53 +0000 (02:42 +0000)
committerChris Hanson <org/chris-hanson/cph>
Wed, 6 Dec 2000 02:42:53 +0000 (02:42 +0000)
a Makefile.

v7/src/Makefile
v7/src/microcode/makegen/Makefile.in.in

index ce8f3233c74fd6ffa7e46dc4b618a2c0ca594e70..0ee89e0ad482587b0c713f33f5a4c9b2bffd0904 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: Makefile,v 1.2 2000/12/05 22:51:14 cph Exp $
+# $Id: Makefile,v 1.3 2000/12/06 02:42:53 cph Exp $
 #
 # Copyright (c) 2000 Massachusetts Institute of Technology
 #
@@ -31,9 +31,7 @@ setup:
            || ln -s ../Makefile.std $${SUBDIR}/Makefile; \
            (cd $${SUBDIR} && $(MAKE) $@) || exit 1; \
        done
-       (cd microcode && makegen/makeinit.sh)
-       (cd microcode && $(MAKE) $@)
-       (cd microcode && $(MAKE) distclean)
+       (cd microcode && ./Setup.sh)
 
 tags TAGS mostlyclean clean distclean maintainer-clean:
        @for SUBDIR in $(SUBDIRS); do \
index 4c770d7eb9b8adf5e13971dbfbc567483301f3c9..1b0ee24163b20373338a50b7cbea95384a8e945e 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: Makefile.in.in,v 1.4 2000/12/05 22:31:01 cph Exp $
+# $Id: Makefile.in.in,v 1.5 2000/12/06 02:42:30 cph Exp $
 #
 # Copyright (c) 2000 Massachusetts Institute of Technology
 #
@@ -212,9 +212,6 @@ psbtobin: $(psbtobin_OBJECTS) $(psbtobin_DEPENDENCIES)
        -rm -f psbtobin
        $(LINK) $(psbtobin_LDFLAGS) $(psbtobin_OBJECTS) $(psbtobin_LIBS)
 
-setup:
-       ( cd cmpauxmd && $(MAKE) )
-
 tags: TAGS
 TAGS:
        etags -r '/^DEF[A-Za-z_ \t(]+"\([^"]+\)"/' *.[ch]
@@ -232,7 +229,7 @@ maintainer-clean: distclean
        -rm -f $(MAINTAINER_CLEAN_FILES)
        ( cd cmpauxmd && $(MAKE) $@ )
 
-.PHONY: all setup tags TAGS mostlyclean clean distclean maintainer-clean
+.PHONY: all tags TAGS mostlyclean clean distclean maintainer-clean
 
 # **** File dependencies ****