X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=ghc%2Fincludes%2FMakefile;h=cb33ade0141d78bc336ef798522f566047c7bb97;hb=354cefe72823fd519063b526ed7f76968ba80f5e;hp=132c07cd1996cf3732d8fb2b8adc1b2360d02612;hpb=bb22180bc92d7c7a4a7630841420787eb5b07bb7;p=ghc-hetmet.git diff --git a/ghc/includes/Makefile b/ghc/includes/Makefile index 132c07c..cb33ade 100644 --- a/ghc/includes/Makefile +++ b/ghc/includes/Makefile @@ -1,6 +1,4 @@ # ----------------------------------------------------------------------------- -# $Id: Makefile,v 1.20 2002/03/02 17:49:42 sof Exp $ -# TOP = .. include $(TOP)/mk/boilerplate.mk @@ -17,59 +15,89 @@ ifeq "$(GhcUnregisterised)" "YES" SRC_CC_OPTS += -DNO_REGS -DUSE_MINIINTERPRETER endif +SRC_CC_OPTS += -I. -I../rts + # # Header file built from the configure script's findings # -H_CONFIG = config.h +H_CONFIG = ghcautoconf.h +H_PLATFORM = ghcplatform.h boot :: gmp.h -all :: $(H_CONFIG) NativeDefs.h +all :: $(H_CONFIG) $(H_PLATFORM) # 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 $(FPTOOLS_TOP)/mk/config.mk +# 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. + +ifneq "$(TARGETPLATFORM)" "$(HOSTPLATFORM)" $(H_CONFIG) : + @echo "*** Cross-compiling: please copy $(H_CONFIG) from the target system" + @exit 1 + +else + +$(H_CONFIG) : $(FPTOOLS_TOP)/mk/config.h $(FPTOOLS_TOP)/mk/config.mk + +$(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." + +endif + +$(H_PLATFORM) : Makefile @echo "Creating $@..." @$(RM) $@ - @echo "#ifndef __FPTOOLS_CONFIG_H__" >$@ - @echo "#define __FPTOOLS_CONFIG_H__" >>$@ + @echo "#ifndef __GHCPLATFORM_H__" >$@ + @echo "#define __GHCPLATFORM_H__" >>$@ @echo >> $@ - @echo "#define HostPlatform_TYPE $(HostPlatform_CPP)" >> $@ - @echo "#define TargetPlatform_TYPE $(HostPlatform_CPP)" >> $@ @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 HOST_ARCH \"$(HostArch_CPP)\"" >> $@ + @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 HOST_OS \"$(HostOS_CPP)\"" >> $@ + @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)_TARGET_OS " >> $@ - @echo "#define $(IRIX_MAJOR)_TARGET_OS 1" >> $@ - @echo "#endif " >> $@ + @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 "#endif /* __FPTOOLS_CONFIG_H__ */" >> $@ + @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." # --------------------------------------------------------------------------- @@ -77,30 +105,51 @@ endif all :: DerivedConstants.h -mkDerivedConstants.c : $(H_CONFIG) +ifneq "$(TARGETPLATFORM)" "$(HOSTPLATFORM)" + +DerivedConstants.h : + @echo "*** Cross-compiling: please copy DerivedConstants.h from the target system" + @exit 1 + +else + +mkDerivedConstants.c : $(H_CONFIG) $(H_PLATFORM) mkDerivedConstantsHdr : mkDerivedConstants.o $(CC) -o $@ $(CC_OPTS) $(LD_OPTS) mkDerivedConstants.o DerivedConstants.h : mkDerivedConstantsHdr - ./mkDerivedConstantsHdr >DerivedConstants.h + ./mkDerivedConstantsHdr >$@ -CLEAN_FILES += mkDerivedConstantsHdr DerivedConstants.h +endif -# --------------------------------------------------------------------------- -# Make NativeDefs.h for the NCG +CLEAN_FILES += mkDerivedConstantsHdr$(exeext) DerivedConstants.h + +# ----------------------------------------------------------------------------- +# + +all :: GHCConstants.h + +ifneq "$(TARGETPLATFORM)" "$(HOSTPLATFORM)" -all :: NativeDefs.h +GHCConstants.h : + @echo "*** Cross-compiling: please copy DerivedConstants.h from the target system" + @exit 1 -mkNativeHdr.o : DerivedConstants.h +else -mkNativeHdr : mkNativeHdr.o - $(CC) -o $@ $(CC_OPTS) $(LD_OPTS) mkNativeHdr.o +mkGHCConstants : mkGHCConstants.o + $(CC) -o $@ $(CC_OPTS) $(LD_OPTS) mkGHCConstants.o -NativeDefs.h : mkNativeHdr - ./mkNativeHdr >NativeDefs.h +mkGHCConstants.o : mkDerivedConstants.c + $(CC) -o $@ $(CC_OPTS) -c $< -DGEN_HASKELL + +GHCConstants.h : mkGHCConstants + ./mkGHCConstants >$@ + +endif -CLEAN_FILES += mkNativeHdr NativeDefs.h +CLEAN_FILES += mkGHCConstants$(exeext) GHCConstants.h # --------------------------------------------------------------------------- # boot setup: @@ -119,12 +168,12 @@ boot :: all # it gives (perhaps) a cleaner binary dist structure..might change. # override datadir:=$(libdir)/include -INSTALL_DATAS += $(H_FILES) $(H_CONFIG) +INSTALL_DATAS += $(H_FILES) $(H_CONFIG) $(H_PLATFORM) # # `make clean' settings: # -CLEAN_FILES += $(H_CONFIG) +CLEAN_FILES += $(H_CONFIG) $(H_PLATFORM) # # Finally, slurp in the standard targets.