X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=Makefile;h=307168eb0c15ccc994ba32b6cebd3218c8cbeebd;hb=b06bf9bd08f3e5ab7f01e5f70a18396b24e3fd32;hp=4be31281f38aea27369e595c44f9c12263f5aec4;hpb=c8d104addebe339b69b14844a41e8b7e3371f43f;p=ghc-hetmet.git diff --git a/Makefile b/Makefile index 4be3128..307168e 100644 --- a/Makefile +++ b/Makefile @@ -44,6 +44,90 @@ project-check : fi # ----------------------------------------------------------------------------- +# Targets: all, stage1, stage2, stage3 + +DIST_CLEAN_FILES += config.cache config.status + +# +# If you've ended up using an in-place version of Happy, +# make sure it gets built early on. +# +ifeq "$(HAPPY)" "$(FPTOOLS_TOP_ABS)/happy/src/happy-inplace" +build : $(FPTOOLS_TOP_ABS)/happy/src/happy-inplace + +$(FPTOOLS_TOP_ABS)/happy/src/happy-inplace : glafp-utils + $(MAKE) -C happy boot all +endif + +# Build all projects that we know about +build : + @case '${MFLAGS}' in *-[ik]*) x_on_err=0;; *-r*[ik]*) x_on_err=0;; *) x_on_err=1;; esac; \ + for i in $(SUBDIRS); do \ + if [ -d $$i ]; then \ + $(MAKE) -C $$i boot; \ + if [ $$? -eq 0 -o $$x_on_err -eq 0 ] ; then true; else exit 1; fi; \ + $(MAKE) -C $$i all; \ + if [ $$? -eq 0 -o $$x_on_err -eq 0 ] ; then true; else exit 1; fi; \ + fi; \ + done + +ifeq "$(findstring ghc, $(SUBDIRS))" "ghc" + +stage1 : build + +stage2 : + $(MAKE) -C ghc/compiler boot stage=2 + $(MAKE) -C ghc/compiler stage=2 + +stage3 : + $(MAKE) -C ghc/compiler boot stage=3 + $(MAKE) -C ghc/compiler stage=3 + +bootstrap : bootstrap2 +bootstrap2 : stage1 stage2 +bootstrap3 : stage1 stage2 stage3 + +all :: bootstrap + +# We want to install the stage 2 bootstrapped compiler by default, but we let +# the user override this by saying 'make install stage=1', for example. +ifeq "$(stage)" "" +INSTALL_STAGE = stage=2 +else +INSTALL_STAGE = +endif + +else # Not building GHC + +all :: build + +INSTALL_STAGE = + +endif + +boot :: + @echo "Please use \`make all' only from the top-level, or \`make boot' followed" + @echo "by \`make all' in an individual project subdirectory (ghc, hslibs etc.)." + +install :: + @case '${MFLAGS}' in *-[ik]*) x_on_err=0;; *-r*[ik]*) x_on_err=0;; *) x_on_err=1;; esac; \ + for i in $(filter-out $(ProjectsDontInstall), $(SUBDIRS)); do \ + if [ -d $$i ]; then \ + $(MAKE) -C $$i $(INSTALL_STAGE) install; \ + if [ $$? -eq 0 -o $$x_on_err -eq 0 ] ; then true; else exit 1; fi; \ + fi; \ + done + +install-docs :: + @case '${MFLAGS}' in *-[ik]*) x_on_err=0;; *-r*[ik]*) x_on_err=0;; *) x_on_err=1;; esac; \ + for i in $(filter-out $(ProjectsDontInstall), $(SUBDIRS)); do \ + if [ -d $$i ]; then \ + $(MAKE) -C $$i $(INSTALL_STAGE) install-docs; \ + if [ $$? -eq 0 -o $$x_on_err -eq 0 ] ; then true; else exit 1; fi; \ + fi; \ + done + +# ----------------------------------------------------------------------------- # Making a binary distribution # # To make a particular binary distribution: @@ -120,14 +204,14 @@ endif $(MKDIRHIER) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM); \ echo $(MKDIRHIER) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/share; \ $(MKDIRHIER) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/share; \ - echo $(MAKE) -C $$i $(MFLAGS) install \ + echo $(MAKE) -C $$i $(MFLAGS) $(INSTALL_STAGE) install \ prefix=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME) \ exec_prefix=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME) \ bindir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/bin/$(TARGETPLATFORM) \ libdir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM) \ libexecdir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM) \ datadir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/share; \ - $(MAKE) -C $$i $(MFLAGS) install \ + $(MAKE) -C $$i $(MFLAGS) $(INSTALL_STAGE) install \ prefix=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME) \ exec_prefix=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME) \ bindir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/bin/$(TARGETPLATFORM) \ @@ -281,8 +365,8 @@ dist :: -$(RM) $(SRC_DIST_NAME).tar.gz mkdir $(SRC_DIST_DIR) mkdir $(SRC_DIST_DIR)/mk - $(FIND) $(SRC_DIST_DIRS) -type d \( -name CVS -prune -o -name SRC -prune -o -print \) | sed -e 's!.*!mkdir "$(SRC_DIST_DIR)/&"!' | sh - $(FIND) $(SRC_DIST_DIRS) $(SRC_DIST_FILES) -name CVS -prune -o -name SRC -prune -o -name "*~" -prune -o -name ".cvsignore" -prune -o -name "\#*" -prune -o -name ".\#*" -prune -o -name "log" -prune -o -name "*-SAVE" -prune -o -name "*.orig" -prune -o -name "*.rej" -prune -o ! -type d -print | sed -e 's!.*!$(LN_S) "$(FPTOOLS_TOP_ABS)/&" "$(SRC_DIST_DIR)/&"!' | sh + $(FIND) $(SRC_DIST_DIRS) -type d \( -name CVS -prune -o -name SRC -prune -o -name "autom4te*" -prune -o -print \) | sed -e 's!.*!mkdir "$(SRC_DIST_DIR)/&"!' | sh + $(FIND) $(SRC_DIST_DIRS) $(SRC_DIST_FILES) -name CVS -prune -o -name SRC -prune -o -name "autom4te*" -prune -o -name "*~" -prune -o -name ".cvsignore" -prune -o -name "\#*" -prune -o -name ".\#*" -prune -o -name "log" -prune -o -name "*-SAVE" -prune -o -name "*.orig" -prune -o -name "*.rej" -prune -o ! -type d -print | sed -e 's!.*!$(LN_S) "$(FPTOOLS_TOP_ABS)/&" "$(SRC_DIST_DIR)/&"!' | sh # Automatic generation of a MANIFEST file for a source distribution # tree that is ready to go. @@ -328,85 +412,6 @@ CLEAN_FILES += hc-files-to-go *-hc.tar.gz # ----------------------------------------------------------------------------- -DIST_CLEAN_FILES += config.cache config.status - -# -# If you've ended up using an in-place version of Happy, -# make sure it gets built early on. -# -ifeq "$(HAPPY)" "$(FPTOOLS_TOP_ABS)/happy/src/happy-inplace" -build : $(FPTOOLS_TOP_ABS)/happy/src/happy-inplace - -$(FPTOOLS_TOP_ABS)/happy/src/happy-inplace : glafp-utils - $(MAKE) -C happy boot all -endif - -# Build all projects that we know about -build : - @case '${MFLAGS}' in *-[ik]*) x_on_err=0;; *-r*[ik]*) x_on_err=0;; *) x_on_err=1;; esac; \ - for i in $(SUBDIRS); do \ - if [ -d $$i ]; then \ - $(MAKE) -C $$i boot; \ - if [ $$? -eq 0 -o $$x_on_err -eq 0 ] ; then true; else exit 1; fi; \ - $(MAKE) -C $$i all; \ - if [ $$? -eq 0 -o $$x_on_err -eq 0 ] ; then true; else exit 1; fi; \ - fi; \ - done - -ifeq "$(findstring ghc, $(SUBDIRS))" "ghc" - -stage1 : build - -stage2 : - $(MAKE) -C ghc/compiler boot stage=2 - $(MAKE) -C ghc/compiler stage=2 - -stage3 : - $(MAKE) -C ghc/compiler boot stage=3 - $(MAKE) -C ghc/compiler stage=3 - -bootstrap : bootstrap2 -bootstrap2 : stage1 stage2 -bootstrap3 : stage1 stage2 stage3 - -all :: bootstrap - -# We want to install the stage 2 bootstrapped compiler by default, but we let -# the user override this by saying 'make install stage=1', for example. -ifeq "$(stage)" "" -INSTALL_STAGE = stage=2 -endif - -else # Not building GHC - -all :: build - -INSTALL_STAGE = - -endif - -boot :: - @echo "Please use \`make all' only from the top-level, or \`make boot' followed" - @echo "by \`make all' in an individual project subdirectory (ghc, hslibs etc.)." - -install :: - @case '${MFLAGS}' in *-[ik]*) x_on_err=0;; *-r*[ik]*) x_on_err=0;; *) x_on_err=1;; esac; \ - for i in $(filter-out $(ProjectsDontInstall), $(SUBDIRS)); do \ - if [ -d $$i ]; then \ - $(MAKE) -C $$i $(INSTALL_STAGE) install; \ - if [ $$? -eq 0 -o $$x_on_err -eq 0 ] ; then true; else exit 1; fi; \ - fi; \ - done - -install-docs :: - @case '${MFLAGS}' in *-[ik]*) x_on_err=0;; *-r*[ik]*) x_on_err=0;; *) x_on_err=1;; esac; \ - for i in $(filter-out $(ProjectsDontInstall), $(SUBDIRS)); do \ - if [ -d $$i ]; then \ - $(MAKE) -C $$i $(INSTALL_STAGE) install-docs; \ - if [ $$? -eq 0 -o $$x_on_err -eq 0 ] ; then true; else exit 1; fi; \ - fi; \ - done - # Turn off target.mk's rules for 'all', 'boot' and 'install'. NO_BOOT_TARGET=YES NO_ALL_TARGET=YES