X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=ghc%2Fdriver%2FMakefile;h=524abd43d461f9f9848a9f56d12ee3016d9f0571;hb=6db8367a09597a8e705be23a62fde8782c9ded60;hp=f24a04b4813a1875cada7af0bc2354af4e3046ab;hpb=438596897ebbe25a07e1c82085cfbc5bdb00f09e;p=ghc-hetmet.git diff --git a/ghc/driver/Makefile b/ghc/driver/Makefile index f24a04b..524abd4 100644 --- a/ghc/driver/Makefile +++ b/ghc/driver/Makefile @@ -1,159 +1,77 @@ #----------------------------------------------------------------------------- +# $Id: Makefile,v 1.50 2000/12/20 10:42:54 simonmar Exp $ # TOP=.. CURRENT_DIR=ghc/driver include $(TOP)/mk/boilerplate.mk -# -# The driver needs to get at the version -include $(TOP)/mk/version.mk - -INSTALLING=0 - -DYN_LOADABLE_BITS = \ - ghc-asm.prl \ - ghc-iface.prl \ - ghc-consist.prl \ - ghc-split.prl -SCRIPT_PROG = ghc-$(ProjectVersion) -SCRIPT_LINK = ghc -SCRIPT_OBJS = ghc.prl - -INTERP=perl - -# -# The driver needs to know the options and names for -# all possible ways, so we magically generate the -# the make variable names for them here. -# - -WAY_NAMES = $(foreach way,$(ALL_WAYS),WAY_$(way)_NAME) -WAY_OPTS = $(foreach way,$(ALL_WAYS),WAY_$(way)_HC_OPTS) +ifeq "$(GhcWithHscBuiltViaC)" "YES" +HC=$(GHC_INPLACE) +endif -ifeq "$(INSTALLING)" "1" -TOP_PWD := $(prefix) +ghc_407_at_least = $(shell expr "$(GhcMinVersion)" \>= 7) +ifeq "$(ghc_407_at_least)" "1" +ifneq "$(mingw32_TARGET_OS)" "1" +SRC_HC_OPTS += -fglasgow-exts -cpp -package concurrent -package posix -package text else -TOP_PWD := $(FPTOOLS_TOP_ABS) +SRC_HC_OPTS += -fglasgow-exts -cpp -package concurrent -package text endif - -SCRIPT_SUBST_VARS := \ - INSTALLING \ - ProjectName ProjectVersion ProjectVersionInt ProjectPatchLevel \ - HscMajorVersion HscMinorVersion CcMajorVersion CcMinorVersion \ - CURRENT_DIR HOSTPLATFORM TARGETPLATFORM \ - GHC_LIB_DIR GHC_RUNTIME_DIR GHC_UTILS_DIR GHC_INCLUDE_DIR \ - GHC_OPT_HILEV_ASM GhcWithNativeCodeGen LeadingUnderscore\ - GHC_UNLIT GHC_HSCPP GHC_HSC GHC_SYSMAN \ - CP RM CONTEXT_DIFF LibGmp \ - $(WAY_NAMES) $(WAY_OPTS) - -# -# When creating a binary distribution, we prefix the driver script -# with a short msg about what variables need to be set to get the -# script going. -# - -ifeq "$(BIN_DIST)" "1" -SCRIPT_PREFIX_FILES=prefix.txt else -SCRIPT_SUBST_VARS += libdir libexecdir datadir bindir TMPDIR TOP_PWD +SRC_HC_OPTS += -fglasgow-exts -cpp -syslib concurrent -syslib posix -syslib misc endif -all :: $(DYN_LOADABLE_BITS) - -# -# Install setup: -# the driver goes in $(bindir), the perl script helpers -# in $(libdir) -# -# ToDo: allow different install name for driver? -# -INSTALL_SCRIPTS += $(SCRIPT_PROG) -INSTALL_LIBS += $(DYN_LOADABLE_BITS) - -# -# Before really installing the driver, we have to -# reconfigure it such that the paths it refers to, -# point to the installed utils. -# -install :: - @$(RM) $(SCRIPT_PROG) - @$(MAKE) $(MFLAGS) INSTALLING=1 $(SCRIPT_PROG) +SUBDIRS = mangler split -# -# depend setup: other directories need the driver script to compute -# their dependencies, so `depend' is simply an alias for `all' here. -depend :: all +# ----------------------------------------------------------------------------- +# Create compiler configuration -# -# Clean up -# -CLEAN_FILES += $(SCRIPT_OBJS) $(SCRIPT_LINK) $(DYN_LOADABLE_BITS) ghc-[0-9].* +CURRENT_DIR=ghc/compiler +CONFIG_HS = Config.hs +boot :: $(CONFIG_HS) -# -# Source distribution -# -SRC_DEST_FILES=$(patsubst %.prl,%.lprl,$(DYN_LOADABLE_BITS)) ghc.lprl ordering-passes test_mangler - -include $(TOP)/mk/target.mk +$(CONFIG_HS) : $(FPTOOLS_TOP)/mk/config.mk Makefile + @$(RM) -f $(CONFIG_HS) + @echo -n "Creating $(CONFIG_HS) ... " + @echo "module Config where" >>$(CONFIG_HS) + @echo "cTARGETPLATFORM = \"$(TARGETPLATFORM)\"" >> $(CONFIG_HS) + @echo "cCURRENT_DIR = \"$(CURRENT_DIR)\"" >> $(CONFIG_HS) + @echo "cHaveLibGmp = \"$(HaveLibGmp)\"" >> $(CONFIG_HS) + @echo "cLibsReadline = \"$(LibsReadline)\"" >> Config.hs + @echo "clibdir = \"$(libdir)\"" >> $(CONFIG_HS) + @echo "cGHC_LIB_DIR = \"$(GHC_LIB_DIR)\"" >> $(CONFIG_HS) + @echo "cGHC_RUNTIME_DIR = \"$(GHC_RUNTIME_DIR)\"" >> $(CONFIG_HS) + @echo "cGHC_UTILS_DIR = \"$(GHC_UTILS_DIR)\"" >> $(CONFIG_HS) + @echo "cGHC_INCLUDE_DIR = \"$(GHC_INCLUDE_DIR)\"" >> $(CONFIG_HS) + @echo "cFPTOOLS_TOP_ABS = \"$(FPTOOLS_TOP_ABS)\"" >> $(CONFIG_HS) + @echo done. -ghc.prl : $(TOP)/mk/version.mk +CLEAN_FILES += $(CONFIG_HS) -# Hack to re-create the in-situ build tree driver script after -# having installed it. -# -install :: - @$(RM) $(SCRIPT_PROG) - @$(MAKE) $(MFLAGS) BIN_DIST=0 INSTALLING=0 $(SCRIPT_PROG) +# ----------------------------------------------------------------------------- +# package configuration files... -# -# Another hack (hmm..I can see a pattern developing here :-) -# In ghc/driver, we create a symlink from ghc- to -# ghc, but we don't want this included in a source distribution. -# We `solve' this by removing `ghc' from the dist tree here. -dist :: - @echo "Patching dist tree: removing $(SRC_DIST_DIR)/ghc symlink" - $(RM) $(SRC_DIST_DIR)/ghc +all :: package.conf package.conf.inplace -# -# Option vars for the special ways (that the driver has special pleading for). -# -# ToDo: rename -DPROFILING to -D__SCC_PROFILING (or somesuch) -# -DTICKY-TICKY TO __TICKY_TICKY__ -# -# (this is to make the naming consistent with other `standard' hscpp #defines ) +pkgconf : Config.o Package.o PackageSrc.o Utils.o + $(HC) $(HC_OPTS) $(LD_OPTS) Config.o Package.o PackageSrc.o Utils.o -o pkgconf -# Way p: -WAY_p_NAME=profiling -WAY_p_HC_OPTS+=-fscc-profiling -DPROFILING -optc-DPROFILING +package.conf.inplace : pkgconf + ./pkgconf in-place >$@ -# Way t: -WAY_t_NAME+=ticky-ticky profiling -WAY_t_HC_OPTS=-fticky-ticky -DTICKY_TICKY -optc-DTICKY_TICKY +package.conf : pkgconf + ./pkgconf install >$@ -# Way `u': -WAY_u_NAME=unregisterized (using portable C only) -WAY_u_HC_OPTS= +INSTALL_DATAS += package.conf -# Way `mp': -WAY_mp_NAME=parallel -WAY_mp_HC_OPTS+=-fstack-check -fparallel -D__PARALLEL_HASKELL__ -optc-DPAR +CLEAN_FILES += pkgconf package.conf.inplace package.conf -# -# Way `mg': -# Q: is passing -D__GRANSIM__ and -DGRAN to hscpp needed? No, just -D__GRANSIM__ -WAY_mg_NAME=GranSim -WAY_mg_HC_OPTS+=-fstack-check -fconcurrent -fgransim -D__GRANSIM__ -D__CONCURRENT_HASKELL__ -optc-DCONCURRENT -optc-DGRAN +# ----------------------------------------------------------------------------- +# installation... -# -# Ways for different garbage collectors -# -WAY_2s_NAME=2-space GC -WAY_2s_HC_OPTS+=-optc-DGC2s +override datadir=$(libdir) +INSTALL_DATAS += ghc-usage.txt -WAY_1s_NAME=1-space GC -WAY_1s_HC_OPTS+=-optc-DGC1s +# ----------------------------------------------------------------------------- -WAY_du_NAME=dual-mode GC -WAY_du_HC_OPTS+=-optc-DGCdu +include $(TOP)/mk/target.mk