X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=ghc%2Fincludes%2FMakefile;h=11e4e1b8273b3f73fcf4c2946e3009ef94991f6b;hb=1c82b947f92da21c57dcec6c65b570871e938f4c;hp=1481c359b9d2a65efb6a419045a410e86e355ffe;hpb=056e4c1faedbc5c9184e52604108590a7814f44d;p=ghc-hetmet.git diff --git a/ghc/includes/Makefile b/ghc/includes/Makefile index 1481c35..11e4e1b 100644 --- a/ghc/includes/Makefile +++ b/ghc/includes/Makefile @@ -1,5 +1,5 @@ # ----------------------------------------------------------------------------- -# $Id: Makefile,v 1.14 2000/12/08 11:47:00 rrt Exp $ +# $Id: Makefile,v 1.22 2003/09/04 09:56:16 simonmar Exp $ # TOP = .. @@ -11,6 +11,13 @@ include $(TOP)/mk/boilerplate.mk H_FILES = $(filter-out gmp.h,$(wildcard *.h)) gmp.h # +# 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 @@ -32,23 +39,30 @@ $(H_CONFIG) : $(FPTOOLS_TOP)/mk/config.h $(FPTOOLS_TOP)/mk/config.mk $(H_CONFIG) : @echo "Creating $@..." @$(RM) $@ - @echo "#define HostPlatform_TYPE $(HostPlatform_CPP)" > $@ - @echo "#define TargetPlatform_TYPE $(HostPlatform_CPP)" >> $@ - @echo "#define BuildPlatform_TYPE $(HostPlatform_CPP)" >> $@ + @echo "#ifndef __FPTOOLS_CONFIG_H__" >$@ + @echo "#define __FPTOOLS_CONFIG_H__" >>$@ + @echo >> $@ + @echo "#define HostPlatform_TYPE $(HostPlatform_CPP)" >> $@ + @echo "#define TargetPlatform_TYPE $(TargetPlatform_CPP)" >> $@ + @echo "#define BuildPlatform_TYPE $(BuildPlatform_CPP)" >> $@ @echo >> $@ @echo "#define $(HostPlatform_CPP)_HOST 1" >> $@ - @echo "#define $(HostPlatform_CPP)_TARGET 1" >> $@ - @echo "#define $(HostPlatform_CPP)_BUILD 1" >> $@ + @echo "#define $(TargetPlatform_CPP)_TARGET 1" >> $@ + @echo "#define $(BuildPlatform_CPP)_BUILD 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 $(TargetArch_CPP)_TARGET_ARCH 1" >> $@ + @echo "#define $(BuildArch_CPP)_BUILD_ARCH 1" >> $@ @echo "#define HOST_ARCH \"$(HostArch_CPP)\"" >> $@ + @echo "#define TARGET_ARCH \"$(TargetArch_CPP)\"" >> $@ + @echo "#define BUILD_ARCH \"$(BuildArch_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 $(TargetOS_CPP)_TARGET_OS 1" >> $@ + @echo "#define $(BuildOS_CPP)_BUILD_OS 1" >> $@ @echo "#define HOST_OS \"$(HostOS_CPP)\"" >> $@ + @echo "#define TARGET_OS \"$(TargetOS_CPP)\"" >> $@ + @echo "#define BUILD_OS \"$(BuildOS_CPP)\"" >> $@ ifeq "$(HostOS_CPP)" "irix" @echo "#ifndef $(IRIX_MAJOR)_TARGET_OS " >> $@ @echo "#define $(IRIX_MAJOR)_TARGET_OS 1" >> $@ @@ -56,21 +70,41 @@ ifeq "$(HostOS_CPP)" "irix" endif @echo >> $@ @echo "#define $(HostVendor_CPP)_HOST_VENDOR 1" >> $@ - @echo "#define $(HostVendor_CPP)_TARGET_VENDOR 1" >> $@ - @echo "#define $(HostVendor_CPP)_BUILD_VENDOR 1" >> $@ + @echo "#define $(TargetVendor_CPP)_TARGET_VENDOR 1" >> $@ + @echo "#define $(BuildVendor_CPP)_BUILD_VENDOR 1" >> $@ @cat $(FPTOOLS_TOP)/mk/$@ >> $@ + @echo "#endif /* __FPTOOLS_CONFIG_H__ */" >> $@ @echo "Done." # --------------------------------------------------------------------------- +# Make DerivedConstants.h for the compiler + +all :: DerivedConstants.h + +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 -C_PROG = mkNativeHdr -C_SRCS = mkNativeHdr.c +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 += NativeDefs.h +CLEAN_FILES += mkNativeHdr$(exeext) NativeDefs.h # --------------------------------------------------------------------------- # boot setup: @@ -88,7 +122,7 @@ boot :: all # (ditto for interface files). This is not *really* needed, but # it gives (perhaps) a cleaner binary dist structure..might change. # -override datadir:=$(libdir)/includes +override datadir:=$(libdir)/include INSTALL_DATAS += $(H_FILES) $(H_CONFIG) #