X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=blobdiff_plain;f=includes%2FMakefile;h=4b89d52c3913af7d25b0c37925346dc43e5d1500;hp=83b74d49a782a54acc7fee3485e89a5cc9cf77a0;hb=2eb04ca0f8d0ec72b417cddc60672c696b4a3daa;hpb=0065d5ab628975892cea1ec7303f968c3338cbe1 diff --git a/includes/Makefile b/includes/Makefile index 83b74d4..4b89d52 100644 --- a/includes/Makefile +++ b/includes/Makefile @@ -4,24 +4,34 @@ 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 gmp.h $(H_CONFIG) $(H_PLATFORM),$(wildcard *.h)) gmp.h + +ifneq "$(DOING_BIN_DIST)" "YES" # -# Options -- if we're building unregisterised, add a couple of -D's +# Options # ifeq "$(GhcUnregisterised)" "YES" SRC_CC_OPTS += -DNO_REGS -DUSE_MINIINTERPRETER endif +ifeq "$(GhcEnableTablesNextToCode) $(GhcUnregisterised)" "YES NO" +SRC_CC_OPTS += -DTABLES_NEXT_TO_CODE +endif + SRC_CC_OPTS += -I. -I../rts -# -# Header file built from the configure script's findings -# -H_CONFIG = ghcautoconf.h -H_PLATFORM = ghcplatform.h +ifneq "$(GhcWithSMP)" "YES" +SRC_CC_OPTS += -DNOSMP +endif boot :: gmp.h @@ -47,6 +57,7 @@ else $(H_CONFIG) : $(FPTOOLS_TOP)/mk/config.h $(FPTOOLS_TOP)/mk/config.mk $(H_CONFIG) : Makefile + @echo "Creating $@..." @echo "#ifndef __GHCAUTOCONF_H__" >$@ @echo "#define __GHCAUTOCONF_H__" >>$@ # Turn '#define PACKAGE_FOO "blah"' into '/* #undef PACKAGE_FOO */'. @@ -151,13 +162,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 # @@ -170,6 +179,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: # @@ -179,3 +193,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