X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=includes%2FMakefile;h=4b89d52c3913af7d25b0c37925346dc43e5d1500;hb=e552cfc427d2734b9a9629f2ab1d22f493e775f6;hp=cfb2a48446d5be1153172bcb38f1f95b3e53c9e5;hpb=edb526551c5a4b99d9630b088616e3660a2ec4f0;p=ghc-hetmet.git diff --git a/includes/Makefile b/includes/Makefile index cfb2a48..4b89d52 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 gmp.h $(H_CONFIG) $(H_PLATFORM),$(wildcard *.h)) gmp.h + +ifneq "$(DOING_BIN_DIST)" "YES" # # Options @@ -25,12 +33,6 @@ 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) @@ -160,6 +162,8 @@ endif CLEAN_FILES += mkGHCConstants$(exeext) GHCConstants.h +endif + # --------------------------------------------------------------------------- # boot setup: # @@ -175,6 +179,11 @@ CLEAN_FILES += mkGHCConstants$(exeext) GHCConstants.h 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: #