X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=ghc%2Fincludes%2FMakefile;h=e0f4b90e529847f4b3bddd75c1b41d50bb731701;hb=b7c9e4a4a2f6227ade716c7e6d4c218e6690dd3a;hp=25b31613bfe5596eab0e0abc96591a9895a9b3d6;hpb=5e6684ac79962723df7c28a6e523d9d863e24430;p=ghc-hetmet.git diff --git a/ghc/includes/Makefile b/ghc/includes/Makefile index 25b3161..e0f4b90 100644 --- a/ghc/includes/Makefile +++ b/ghc/includes/Makefile @@ -1,47 +1,48 @@ -# -# ghc/includes +# ----------------------------------------------------------------------------- +# $Id: Makefile,v 1.21 2003/03/21 15:45:56 sof Exp $ # TOP = .. include $(TOP)/mk/boilerplate.mk # -# Just to make sure, no ways stuff in here, please. +# All header files # -WAYS= - -# De-litted header files -LH_FILES=$(wildcard *.lh) +H_FILES = $(filter-out gmp.h,$(wildcard *.h)) gmp.h -DELIT_H_FILES = $(patsubst %.lh, %.h, $(LH_FILES)) +# +# Options -- if we're building unregisterised, add a couple of -D's +# +ifeq "$(GhcUnregisterised)" "YES" +SRC_CC_OPTS += -DNO_REGS -DUSE_MINIINTERPRETER +endif # # Header file built from the configure script's findings # H_CONFIG = config.h +boot :: gmp.h -# Everything else -H_FILES = stgdefs.h rtsdefs.h StgDirections.h StgMachDeps.h error.h \ - ieee-flpt.h gmp.h LLC.h HLC.h - -ALL_FILES = $(DELIT_H_FILES) $(H_FILES) -ifeq ($(GhcWithNativeCodeGen),YES) -ALL_FILES += $(TARGETPLATFORM).h -endif +all :: $(H_CONFIG) NativeDefs.h +# gmp.h is copied from the GMP directory +gmp.h : $(FPTOOLS_TOP)/ghc/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, prepending # some make variables specifying cpp platform variables. # -$(H_CONFIG) : $(FPTOOLS_TOP)/mk/config.h +$(H_CONFIG) : $(FPTOOLS_TOP)/mk/config.h $(FPTOOLS_TOP)/mk/config.mk $(H_CONFIG) : @echo "Creating $@..." @$(RM) $@ - @echo "#define HostPlatform_TYPE $(HostPlatform_CPP)" > $@ + @echo "#ifndef __FPTOOLS_CONFIG_H__" >$@ + @echo "#define __FPTOOLS_CONFIG_H__" >>$@ + @echo >> $@ + @echo "#define HostPlatform_TYPE $(HostPlatform_CPP)" >> $@ @echo "#define TargetPlatform_TYPE $(HostPlatform_CPP)" >> $@ @echo "#define BuildPlatform_TYPE $(HostPlatform_CPP)" >> $@ @echo >> $@ @@ -52,37 +53,59 @@ $(H_CONFIG) : @echo "#define $(HostArch_CPP)_HOST_ARCH 1" >> $@ @echo "#define $(HostArch_CPP)_TARGET_ARCH 1" >> $@ @echo "#define $(HostArch_CPP)_BUILD_ARCH 1" >> $@ + @echo "#define HOST_ARCH \"$(HostArch_CPP)\"" >> $@ @echo >> $@ @echo "#define $(HostOS_CPP)_HOST_OS 1" >> $@ @echo "#define $(HostOS_CPP)_TARGET_OS 1" >> $@ @echo "#define $(HostOS_CPP)_BUILD_OS 1" >> $@ + @echo "#define HOST_OS \"$(HostOS_CPP)\"" >> $@ +ifeq "$(HostOS_CPP)" "irix" + @echo "#ifndef $(IRIX_MAJOR)_TARGET_OS " >> $@ + @echo "#define $(IRIX_MAJOR)_TARGET_OS 1" >> $@ + @echo "#endif " >> $@ +endif @echo >> $@ @echo "#define $(HostVendor_CPP)_HOST_VENDOR 1" >> $@ @echo "#define $(HostVendor_CPP)_TARGET_VENDOR 1" >> $@ @echo "#define $(HostVendor_CPP)_BUILD_VENDOR 1" >> $@ @cat $(FPTOOLS_TOP)/mk/$@ >> $@ + @echo "#endif /* __FPTOOLS_CONFIG_H__ */" >> $@ @echo "Done." -$(TARGETPLATFORM).h : mkNativeHdr - $(RM) $@ - ./mkNativeHdr > $@ || ( rm $@ && exit 1 ) +# --------------------------------------------------------------------------- +# Make DerivedConstants.h for the compiler -# -# Building mkNativeHdr using the Haskell compiler -# to do it (ghc really). -# -mkNativeHdr : $(HLIT) $(HFILES) mkNativeHdr.c - $(HC) -c mkNativeHdr.c - $(CC) $(CFLAGS) -o mkNativeHdr mkNativeHdr.c +all :: DerivedConstants.h -all :: $(H_CONFIG) $(ALL_FILES) +mkDerivedConstants.c : $(H_CONFIG) -# +mkDerivedConstantsHdr : mkDerivedConstants.o + $(CC) -o $@ $(CC_OPTS) $(LD_OPTS) mkDerivedConstants.o + +DerivedConstants.h : mkDerivedConstantsHdr + ./mkDerivedConstantsHdr >DerivedConstants.h + +CLEAN_FILES += mkDerivedConstantsHdr$(exeext) DerivedConstants.h + +# --------------------------------------------------------------------------- +# Make NativeDefs.h for the NCG + +all :: NativeDefs.h + +mkNativeHdr.o : DerivedConstants.h + +mkNativeHdr : mkNativeHdr.o + $(CC) -o $@ $(CC_OPTS) $(LD_OPTS) mkNativeHdr.o + +NativeDefs.h : mkNativeHdr + ./mkNativeHdr >NativeDefs.h + +CLEAN_FILES += mkNativeHdr$(exeext) NativeDefs.h + +# --------------------------------------------------------------------------- # boot setup: # -# When building the dependencies in runtime/ , lib/ we need to get -# at the de-litted versions of includes/, hence we arrange the -# `depend' target to depend on `all'. +# Need config.h to make dependencies in the runtime system source. # boot :: all @@ -95,17 +118,13 @@ boot :: all # (ditto for interface files). This is not *really* needed, but # it gives (perhaps) a cleaner binary dist structure..might change. # -datadir:=$(libdir)/includes -INSTALL_DATAS += $(DELIT_H_FILES) $(H_FILES) $(TARGETPLATFORM).h $(H_CONFIG) +override datadir:=$(libdir)/include +INSTALL_DATAS += $(H_FILES) $(H_CONFIG) # # `make clean' settings: # -CLEAN_FILES += $(DELIT_H_FILES) $(H_CONFIG) mkNativeHdr.o mkNativeHdr - -ifeq ($(GhcWithNativeCodeGen),YES) -CLEAN_FILES += $(TARGETPLATFORM).h -endif +CLEAN_FILES += $(H_CONFIG) # # Finally, slurp in the standard targets.