X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=blobdiff_plain;f=includes%2FMakefile;h=e7292cd8a1001bff36c294399096a5e59793a114;hp=e653d3e9fea517c05445de6a0098c90e86ed2828;hb=fdf1cd0399158308769fcb2ab7e46e215a68d865;hpb=f7bcfb698d9a895a168fd29eefd7dba8fd9be849 diff --git a/includes/Makefile b/includes/Makefile index e653d3e..e7292cd 100644 --- a/includes/Makefile +++ b/includes/Makefile @@ -4,9 +4,17 @@ TOP = .. include $(TOP)/mk/boilerplate.mk # +# Header files built from the configure script's findings +# +H_CONFIG = ghcautoconf.h +H_PLATFORM = ghcplatform.h + +# # All header files # -H_FILES = $(filter-out gmp.h,$(wildcard *.h)) gmp.h +H_FILES = $(filter-out $(H_CONFIG) $(H_PLATFORM),$(wildcard *.h)) + +ifneq "$(DOING_BIN_DIST)" "YES" # # Options @@ -19,26 +27,14 @@ ifeq "$(GhcEnableTablesNextToCode) $(GhcUnregisterised)" "YES NO" SRC_CC_OPTS += -DTABLES_NEXT_TO_CODE endif -SRC_CC_OPTS += -I. -I../rts +SRC_CC_OPTS += -I. -I../rts -I../gmp/gmpbuild ifneq "$(GhcWithSMP)" "YES" SRC_CC_OPTS += -DNOSMP endif -# -# Header file built from the configure script's findings -# -H_CONFIG = ghcautoconf.h -H_PLATFORM = ghcplatform.h - -boot :: gmp.h - all :: $(H_CONFIG) $(H_PLATFORM) -# gmp.h is copied from the GMP directory -gmp.h : $(FPTOOLS_TOP)/rts/gmp/gmp.h - $(CP) $< $@ - # The fptools configure script creates the configuration header file and puts it # in fptools/mk/config.h. We copy it down to here (without any PACKAGE_FOO # definitions to avoid clashes), prepending some make variables specifying cpp @@ -160,13 +156,11 @@ endif CLEAN_FILES += mkGHCConstants$(exeext) GHCConstants.h +endif + # --------------------------------------------------------------------------- # boot setup: # -# Need config.h to make dependencies in the runtime system source. -# -boot :: all - # # Install all header files # @@ -179,6 +173,11 @@ boot :: all override datadir:=$(libdir)/include INSTALL_DATAS += $(H_FILES) $(H_CONFIG) $(H_PLATFORM) +binary-dist: + $(INSTALL_DIR) $(BIN_DIST_DIR)/includes + $(INSTALL_DATA) Makefile $(BIN_DIST_DIR)/includes/ + $(INSTALL_DATA) $(INSTALL_DATAS) $(BIN_DIST_DIR)/includes/ + # # `make clean' settings: # @@ -188,3 +187,14 @@ CLEAN_FILES += $(H_CONFIG) $(H_PLATFORM) # Finally, slurp in the standard targets. # include $(TOP)/mk/target.mk + +# We need DerivedConstants.h in order to make dependencies in the RTS +# sources, so 'make boot' here should behave like 'make all'. +# +# However, note that we should do this only *after* 'make boot' has +# created .depend in here; otherwise an out-of-date .depend file can +# prevent 'make boot' from working, requiring manual removal of +# .depend (see #1095). This is why the following target comes *after* +# target.mk is included above (target.mk contains "boot :: depend"). +# +boot :: all