X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=ghc%2Fincludes%2FMakefile;h=136bce7b49d84ffcc8e8c7f3ff0370ee32e7f264;hb=9ff5db3c6373f8e7723da7a2d1db87ae69fc7322;hp=d5335faa4901f8af6886bed28ef8c1efa99b2bf8;hpb=0f488ed1ca15cc82be85c1d3a3128636688b4b2b;p=ghc-hetmet.git diff --git a/ghc/includes/Makefile b/ghc/includes/Makefile index d5335fa..136bce7 100644 --- a/ghc/includes/Makefile +++ b/ghc/includes/Makefile @@ -1,88 +1,132 @@ -# -# ghc/includes +# ----------------------------------------------------------------------------- +# $Id: Makefile,v 1.28 2005/03/02 09:48:16 simonmar 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 +H_CONFIG = ghcautoconf.h +H_PLATFORM = ghcplatform.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 :: $(H_CONFIG) $(H_PLATFORM) -ALL_FILES = $(DELIT_H_FILES) $(H_FILES) -ifeq ($(GhcWithNativeCodeGen),YES) -ALL_FILES += $(TARGETPLATFORM).h -endif +# 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 (without any PACKAGE_FOO +# definitions to avoid clashes), prepending some make variables specifying cpp +# platform variables. -# -# 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) : +$(H_CONFIG) : Makefile + @echo "#ifndef __GHCAUTOCONF_H__" >$@ + @echo "#define __GHCAUTOCONF_H__" >>$@ +# Turn '#define PACKAGE_FOO "blah"' into '/* #undef PACKAGE_FOO */'. + @sed 's,^\([ ]*\)#[ ]*define[ ][ ]*\(PACKAGE_[A-Z]*\)[ ][ ]*".*".*$$,\1/* #undef \2 */,' $(FPTOOLS_TOP)/mk/config.h >> $@ + @echo "#endif /* __GHCAUTOCONF_H__ */" >> $@ + @echo "Done." + +$(H_PLATFORM) : Makefile @echo "Creating $@..." @$(RM) $@ - @echo "#define HostPlatform_TYPE $(HostPlatform_CPP)" > $@ - @echo "#define TargetPlatform_TYPE $(HostPlatform_CPP)" >> $@ + @echo "#ifndef __GHCPLATFORM_H__" >$@ + @echo "#define __GHCPLATFORM_H__" >>$@ + @echo >> $@ @echo "#define BuildPlatform_TYPE $(HostPlatform_CPP)" >> $@ + @echo "#define HostPlatform_TYPE $(TargetPlatform_CPP)" >> $@ @echo >> $@ - @echo "#define $(HostPlatform_CPP)_HOST 1" >> $@ - @echo "#define $(HostPlatform_CPP)_TARGET 1" >> $@ - @echo "#define $(HostPlatform_CPP)_BUILD 1" >> $@ + @echo "#define $(HostPlatform_CPP)_BUILD 1" >> $@ + @echo "#define $(TargetPlatform_CPP)_HOST 1" >> $@ @echo >> $@ - @echo "#define $(HostArch_CPP)_HOST_ARCH 1" >> $@ - @echo "#define $(HostArch_CPP)_TARGET_ARCH 1" >> $@ - @echo "#define $(HostArch_CPP)_BUILD_ARCH 1" >> $@ + @echo "#define $(HostArch_CPP)_BUILD_ARCH 1" >> $@ + @echo "#define $(TargetArch_CPP)_HOST_ARCH 1" >> $@ + @echo "#define BUILD_ARCH \"$(HostArch_CPP)\"" >> $@ + @echo "#define HOST_ARCH \"$(TargetArch_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 $(HostOS_CPP)_BUILD_OS 1" >> $@ + @echo "#define $(TargetOS_CPP)_HOST_OS 1" >> $@ + @echo "#define BUILD_OS \"$(HostOS_CPP)\"" >> $@ + @echo "#define HOST_OS \"$(TargetOS_CPP)\"" >> $@ +ifeq "$(HostOS_CPP)" "irix" + @echo "#ifndef $(IRIX_MAJOR)_HOST_OS" >> $@ + @echo "#define $(IRIX_MAJOR)_HOST_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 "#define $(HostVendor_CPP)_BUILD_VENDOR 1" >> $@ + @echo "#define $(TargetVendor_CPP)_HOST_VENDOR 1" >> $@ + @echo "#define BUILD_VENDOR \"$(HostVendor_CPP)\"" >> $@ + @echo "#define HOST_VENDOR \"$(TargetVendor_CPP)\"" >> $@ + @echo >> $@ + @echo "/* These TARGET macros are for backwards compatibily... DO NOT USE! */" >> $@ + @echo "#define TargetPlatform_TYPE $(TargetPlatform_CPP)" >> $@ + @echo "#define $(TargetPlatform_CPP)_TARGET 1" >> $@ + @echo "#define $(TargetArch_CPP)_TARGET_ARCH 1" >> $@ + @echo "#define TARGET_ARCH \"$(TargetArch_CPP)\"" >> $@ + @echo "#define $(TargetOS_CPP)_TARGET_OS 1" >> $@ + @echo "#define TARGET_OS \"$(TargetOS_CPP)\"" >> $@ + @echo "#define $(TargetVendor_CPP)_TARGET_VENDOR 1" >> $@ + @echo >> $@ + @echo "#endif /* __GHCPLATFORM_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 + +mkDerivedConstants.c : $(H_CONFIG) + +mkDerivedConstantsHdr : mkDerivedConstants.o + $(CC) -o $@ $(CC_OPTS) $(LD_OPTS) mkDerivedConstants.o + +DerivedConstants.h : mkDerivedConstantsHdr + ./mkDerivedConstantsHdr >$@ -all :: $(H_CONFIG) $(ALL_FILES) +CLEAN_FILES += mkDerivedConstantsHdr$(exeext) DerivedConstants.h +# ----------------------------------------------------------------------------- # + +all :: GHCConstants.h + +mkGHCConstants.c : $(H_CONFIG) + +mkGHCConstants : mkGHCConstants.o + $(CC) -o $@ $(CC_OPTS) $(LD_OPTS) mkGHCConstants.o + +mkGHCConstants.o : mkDerivedConstants.c + $(CC) -o $@ -c $< -DGEN_HASKELL + +GHCConstants.h : mkGHCConstants + ./mkGHCConstants >$@ + +CLEAN_FILES += mkGHCConstants$(exeext) GHCConstants.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 @@ -90,25 +134,18 @@ boot :: all # Install all header files # # Hackily set the install destination here: -INSTALL_DATAS += $(DELIT_H_FILES) $(H_FILES) $(TARGETPLATFORM).h - # -# We want the configuration header files for the different platforms -# to be put inside the lib/../$(HOSTPLATFORM)/ directory +# 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. # -install :: $(H_CONFIG) - $(INSTALL_DIR) $(libdir)/includes - $(INSTALL_DATA) $(INSTALL_OPTS) $(H_CONFIG) $(libdir)/includes - +override datadir:=$(libdir)/include +INSTALL_DATAS += $(H_FILES) $(H_CONFIG) $(H_PLATFORM) # # `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) $(H_PLATFORM) # # Finally, slurp in the standard targets.