X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=includes%2FMakefile;h=bebe2eb93fc21bdaaa146606f8cad79226793a1f;hb=48565ca88a6b8a9f8b22add0c50d221a2a4a07e9;hp=cfb2a48446d5be1153172bcb38f1f95b3e53c9e5;hpb=edb526551c5a4b99d9630b088616e3660a2ec4f0;p=ghc-hetmet.git diff --git a/includes/Makefile b/includes/Makefile index cfb2a48..bebe2eb 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 @@ -20,25 +28,20 @@ SRC_CC_OPTS += -DTABLES_NEXT_TO_CODE endif SRC_CC_OPTS += -I. -I../rts +ifeq "$(HaveLibGmp)" "YES" +ifneq "$(GMP_INCLUDE_DIRS)" "" +SRC_CC_OPTS += -I$(GMP_INCLUDE_DIRS) +endif +else +SRC_CC_OPTS += -I../gmp/gmpbuild +endif 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,20 +163,24 @@ endif CLEAN_FILES += mkGHCConstants$(exeext) GHCConstants.h +endif + # --------------------------------------------------------------------------- # boot setup: # # # Install all header files # -# Hackily set the install destination here: -# # Note: we keep per-platform copies of all the include files # (ditto for interface files). This is not *really* needed, but # it gives (perhaps) a cleaner binary dist structure..might change. # -override datadir:=$(libdir)/include -INSTALL_DATAS += $(H_FILES) $(H_CONFIG) $(H_PLATFORM) +INSTALL_HEADERS += $(H_FILES) $(H_CONFIG) $(H_PLATFORM) + +binary-dist: + $(INSTALL_DIR) $(BIN_DIST_DIR)/includes + $(INSTALL_DATA) Makefile $(BIN_DIST_DIR)/includes/ + $(INSTALL_DATA) $(INSTALL_HEADERS) $(BIN_DIST_DIR)/includes/ # # `make clean' settings: