X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=ghc%2Fdriver%2FMakefile;h=e38b6ef4fb231d7c7f67efd030e3f8e0d4204710;hb=02f8658bc75608ca491490e03109ac49e90ff02e;hp=9b2a49e4f0601caf2f45d55e96e7d42e60a1536d;hpb=b200c258f517f957d8aa6d579a006dfa7b932edb;p=ghc-hetmet.git diff --git a/ghc/driver/Makefile b/ghc/driver/Makefile index 9b2a49e..e38b6ef 100644 --- a/ghc/driver/Makefile +++ b/ghc/driver/Makefile @@ -1,157 +1,61 @@ #----------------------------------------------------------------------------- -# $Id: Makefile,v 1.8 1997/07/21 11:57:04 andre Exp $ +# $Id: Makefile,v 1.65 2001/06/12 17:08:11 simonmar Exp $ +# TOP=.. CURRENT_DIR=ghc/driver include $(TOP)/mk/boilerplate.mk -# -# The ways setup doesn't apply to the driver -# -override WAYS= - -INSTALLING=0 - -DYN_LOADABLE_BITS = \ - ghc-asm.prl \ - ghc-iface.prl \ - ghc-consist.prl \ - ghc-split.prl - -SCRIPT_PROG = ghc -SCRIPT_OBJS = ghc.prl - -INTERP=perl +# hack for ghci-inplace script, see below +INSTALLING=1 -# -# 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 "$(INSTALLING)" "1" +SUBDIRS = mangler split ghc ghci +endif -ifeq "$(INSTALLING)" "1" -TOP_PWD := $(prefix) +# ----------------------------------------------------------------------------- +# package configuration files... + +PKGCONF_OPTS = "$(TARGETPLATFORM)" \ + "$(CURRENT_DIR)" \ + "$(HaveLibGmp)" \ + "$(LibsReadline)" \ + "$(GHC_LIB_DIR)" \ + "$(GHC_RUNTIME_DIR)" \ + "$(GHC_UTILS_DIR)" \ + "$(GHC_INCLUDE_DIR)" + +ghc_407_at_least = $(shell expr "$(GhcVersion)" \>= 4.07) +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 PROJECTPATCHLEVEL \ - CURRENT_DIR TMPDIR 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 \ - $(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 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) - -# -# depend setup: other directories need the driver script to compute -# their dependencies, so `depend' is simply an alias for `all' here. -depend :: all - -# -# Clean up -# -CLEAN_FILES += $(SCRIPT_OBJS) $(DYN_LOADABLE_BITS) - -# -# Source distribution -# -SRC_DEST_FILES=$(patsubst %.prl,%.lprl,$(DYN_LOADABLE_BITS)) ghc.lprl ordering-passes test_mangler - -include $(TOP)/mk/target.mk - -# Hack to re-create the in-situ build tree driver script after -# having installed it. -# -install :: - @$(RM) $(SCRIPT_PROG) - @$(MAKE) $(MFLAGS) BIN_DIST=0 $(SCRIPT_PROG) - - -# -# Option vars for the special ways (that the driver has special pleading for). -# +SRC_HC_OPTS += -DWANT_PRETTY -# Way p: -WAY_p_NAME=profiling -WAY_p_HC_OPTS+=-fscc-profiling -DPROFILING -optc-DPROFILING +all :: package.conf package.conf.inplace -# Way t: -WAY_t_NAME+=ticky-ticky profiling -WAY_t_HC_OPTS=-fticky-ticky -DTICKY_TICKY -optc-DTICKY_TICKY +HS_OBJS = Package.o PackageSrc.o Utils.o +HS_PROG = pkgconf -# Way `u': -WAY_u_NAME=unregisterized (using portable C only) -WAY_u_HC_OPTS= +package.conf.inplace : $(HS_PROG) + ./$(HS_PROG) in-place $(PKGCONF_OPTS) >$@ -# Way `mc': concurrent -WAY_mc_NAME=concurrent -WAY_mc_HC_OPTS+=-fstack-check -fconcurrent -D__CONCURRENT_HASKELL__ -DCONCURRENT -optcpp-D__CONCURRENT_HASKELL__ -optcpp-DCONCURRENT +package.conf : pkgconf + ./$(HS_PROG) install $(PKGCONF_OPTS) >$@ -# Way `mr': -WAY_mr_NAME=profiled concurrent -WAY_mr_HC_OPTS+=-fstack-check -fconcurrent -fscc-profiling -D__CONCURRENT_HASKELL__ -DCONCURRENT -DPROFILING -optcpp-D__CONCURRENT_HASKELL__ -optcpp-DCONCURRENT -optcpp-DPROFILING +Package.o : ../utils/ghc-pkg/Package.hs -# Way `mt': -WAY_mt_NAME=ticky-ticky concurrent -WAY_mt_HC_OPTS+=-fstack-check -fconcurrent -fticky-ticky -D__CONCURRENT_HASKELL__ -DCONCURRENT -DTICKY-TICKY -optc-D__CONCURRENT_HASKELL__ -optc-DCONCURRENT -optc-DTICKY_TICKY +override datadir = $(libdir) +INSTALL_DATAS += package.conf ghc-usage.txt -# Way `mp': -WAY_mp_NAME=parallel -WAY_mp_HC_OPTS+=-fstack-check -fconcurrent -D__PARALLEL_HASKELL__ -DPAR -optcpp-D__PARALLEL_HASKELL__ -optc-DPAR -optc-DCONCURRENT +CLEAN_FILES += Main.hi pkgconf package.conf.inplace package.conf -# -# Way `mg': -# Q: is passing -D__GRANSIM__ and -DGRAN to hscpp needed? -WAY_mg_NAME=GranSim -WAY_mg_HC_OPTS+=-fstack-check -fconcurrent -fgransim -D__GRANSIM__ -DGRAN -optcpp-D__GRANSIM__ -optc-DGRAN -optc-D__CONCURRENT_HASKELL__ -optc-DCONCURRENT +# ----------------------------------------------------------------------------- -# -# Ways for different garbage collectors -# -WAY_2s_NAME=2-space GC -WAY_2s_HC_OPTS+=-optc-DGC2s - -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