X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=libraries%2FMakefile;h=1fef7e3893ed6067876649d7093318a5211f39f3;hb=dce65c102b136ee9eb57fadf4cc3fd7a8931d074;hp=85fbc77c12130236d3c91c4bd646bf750ed74609;hpb=59a2c9ad844edd31ce4550ee047bbe6f5f367ea1;p=ghc-hetmet.git diff --git a/libraries/Makefile b/libraries/Makefile index 85fbc77..1fef7e3 100644 --- a/libraries/Makefile +++ b/libraries/Makefile @@ -22,7 +22,7 @@ .PHONY: default_target -default_target: build +default_target: all # make doesn't give us an easy way to get the libraries built in # dependency order the first time, but not rebuild base (for example) @@ -117,7 +117,6 @@ subdirs: boot: $(BOOTSTRAP_STAMPS) ifBuildable/ifBuildable \ $(foreach SUBDIR,$(SUBDIRS),$(SUBDIR)/setup/Setup) \ - $(foreach SUBDIR,$(SUBDIRS),$(SUBDIR)/GNUmakefile) \ installPackage/installPackage # We build the Setup program in a setup subdirectory to stop it trying @@ -196,6 +195,12 @@ else libsubdir = $$compiler/lib/$$pkgid endif +# We rely on all the CONFIGURE_ARGS being quoted with '...', and there +# being no 's inside the values. +FLAGGED_CONFIGURE_ARGS = $(subst $(space)',\ + $(space)--configure-option=',\ + $(space)$(CONFIGURE_ARGS)) + $(foreach SUBDIR,$(SUBDIRS), \ stamp/configure.library.build$(CONFIGURE_STAMP_EXTRAS).$(SUBDIR)): \ stamp/configure.library.build$(CONFIGURE_STAMP_EXTRAS).%: %/setup/Setup @@ -205,14 +210,14 @@ stamp/configure.library.build$(CONFIGURE_STAMP_EXTRAS).%: %/setup/Setup --prefix='$$topdir' \ --datadir='$$prefix/share' \ --libsubdir='$(libsubdir)' \ - --with-compiler=../../compiler/ghc-inplace$(dot_bat) \ - --with-hc-pkg=../../utils/ghc-pkg/ghc-pkg-inplace$(dot_bat) \ - --with-hsc2hs=../../utils/hsc2hs/hsc2hs-inplace$(dot_bat) \ + --with-compiler=../../compiler/stage1/ghc-inplace$ \ + --with-hc-pkg=../../utils/ghc-pkg/ghc-pkg-inplace$ \ + --with-hsc2hs=../../utils/hsc2hs/hsc2hs-inplace \ --with-ld=$(LD) \ --datasubdir=ghc \ --haddock-args="--use-contents=../index.html \ --use-index=../doc-index.html" \ - $(addprefix --configure-option=,$(CONFIGURE_ARGS)) \ + $(FLAGGED_CONFIGURE_ARGS) \ --configure-option=--with-cc=$(CC) ) \ && touch $@ || touch $*/unbuildable # We don't touch $@ if configure failed as we would prefer to try @@ -269,6 +274,7 @@ clean.library.%: $(RM) -f stamp/configure.library.*.$* $*/unbuildable -cd $* && setup/Setup clean $(RM) -rf $*/setup + $(RM) $*/GNUmakefile $*/Makefile.local endif # -----------------------------------------------------------------------------