Pass configure arguments to the library configure scripts
[ghc-hetmet.git] / libraries / Makefile
index fe89436..68d84f9 100644 (file)
@@ -73,6 +73,11 @@ CONFIGURE_OPTS += --enable-library-profiling
 CONFIGURE_STAMP_EXTRAS := $(CONFIGURE_STAMP_EXTRAS)-profiling
 endif
 
+ifeq "$(SplitObjs)" "YES"
+CONFIGURE_OPTS += --enable-split-objs
+CONFIGURE_STAMP_EXTRAS := $(CONFIGURE_STAMP_EXTRAS)-splitting
+endif
+
 BOOTSTRAPPING_CABAL = bootstrapping.cabal
 
 .PHONY: subdirs
@@ -145,6 +150,7 @@ stamp/configure.library.build$(CONFIGURE_STAMP_EXTRAS).%: %/setup/Setup
                             --with-ld=$(LD) \
                             --datasubdir=ghc \
                             --haddock-args="--use-contents=../index.html --use-index=../doc-index.html" \
+                            $(addprefix --configure-option=,$(CONFIGURE_ARGS)) \
                             --configure-option=--with-cc=$(CC)
        touch $@
 
@@ -172,12 +178,14 @@ doc.library.%: stamp/configure.library.build$(CONFIGURE_STAMP_EXTRAS).% \
 INSTALL_DIR=$(prefix)/share/ghc/doc/html/
 
 install: $(foreach SUBDIR,$(SUBDIRS),install.library.$(SUBDIR))
+ifneq "$(NO_HADDOCK_DOCS)" "YES"
        $(INSTALL_DATA)   index.html doc-index.html                       $(INSTALL_DIR)
        $(INSTALL_SCRIPT) gen_contents_index                                      $(INSTALL_DIR)
        # Hacks:
        $(INSTALL_DATA)   $(prefix)/share/ghc/doc/html/base/*.css $(INSTALL_DIR)
        $(INSTALL_DATA)   $(prefix)/share/ghc/doc/html/base/*.js  $(INSTALL_DIR)
        $(INSTALL_DATA)   $(prefix)/share/ghc/doc/html/base/*.gif $(INSTALL_DIR)
+endif
 
 # Cabal doesn't let us ask to install docs only, so do nothing here
 install-docs:
@@ -201,7 +209,9 @@ $(foreach SUBDIR,$(SUBDIRS),install.library.$(SUBDIR)): \
 install.library.%: stamp/configure.library.install.% %/setup/Setup
        cd $* && ../ifBuildable/ifBuildable setup/Setup install
 
-.PHONY: clean clean.library.%
+.PHONY: distclean clean clean.library.%
+
+distclean: clean
 
 clean: $(foreach SUBDIR,$(SUBDIRS),clean.library.$(SUBDIR))
        $(RM) -f stamp/$(BOOTSTRAPPING_CABAL)