[project @ 2000-04-21 18:07:46 by panne]
[ghc-hetmet.git] / ghc / driver / Makefile
index 49ce72d..e3d9076 100644 (file)
@@ -1,16 +1,18 @@
 #-----------------------------------------------------------------------------
-# $Id: Makefile,v 1.6 1997/05/19 06:02:14 sof Exp $
+# $Id: Makefile,v 1.29 2000/04/21 18:07:46 panne Exp $
+
+# We create two driver scripts: 
+#      - one to run in-place in the build tree for building libraries
+#      - one wired to the install locations for later installation
+#
+# the installation script is built first, and we invoke make recursively
+# to build the in-place version.
 
 TOP=..
 CURRENT_DIR=ghc/driver
 include $(TOP)/mk/boilerplate.mk
 
-#
-# The ways setup doesn't apply to the driver
-#
-override WAYS=
-
-INSTALLING=0
+INSTALLING=1
 
 DYN_LOADABLE_BITS = \
        ghc-asm.prl \
@@ -18,7 +20,18 @@ DYN_LOADABLE_BITS = \
        ghc-consist.prl \
        ghc-split.prl
 
-SCRIPT_PROG = ghc
+INSTALLED_SCRIPT_PROG  = ghc-$(ProjectVersion)
+INPLACE_SCRIPT_PROG    = ghc-inplace
+
+ifeq "$(INSTALLING)" "1"
+TOP_PWD        := $(prefix)
+SCRIPT_PROG    =  $(INSTALLED_SCRIPT_PROG)
+SCRIPT_LINK    =  ghc
+else
+TOP_PWD        := $(FPTOOLS_TOP_ABS)
+SCRIPT_PROG    =  $(INPLACE_SCRIPT_PROG)
+endif
+
 SCRIPT_OBJS = ghc.prl
  
 INTERP=perl
@@ -29,24 +42,19 @@ INTERP=perl
 # 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"
-TOP_PWD := $(prefix)
-else
-TOP_PWD := $(FPTOOLS_TOP_ABS)
-endif
+USER_WAY_NAMES = $(foreach way,$(USER_WAYS),WAY_$(way)_NAME)
+USER_WAY_OPTS  = $(foreach way,$(USER_WAYS),WAY_$(way)_REAL_OPTS)
 
 SCRIPT_SUBST_VARS := \
   INSTALLING \
-  PROJECTNAME PROJECTVERSION PROJECTPATCHLEVEL \
-  CURRENT_DIR TMPDIR HOSTPLATFORM TARGETPLATFORM \
-  GHC_LIB_DIR GHC_RUNTIME_DIR GHC_UTILS_DIR GHC_INCLUDE_DIR \
+  ProjectName ProjectVersion ProjectVersionInt \
+  HscMajorVersion HscMinorVersion CcMajorVersion CcMinorVersion \
+  CURRENT_DIR HOSTPLATFORM TARGETPLATFORM \
+  GHC_LIB_DIR GHC_RUNTIME_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)
+  GHC_UNLIT GHC_HSCPP GHC_MKDEPENDHS GHC_HSC GHC_SYSMAN EnableWin32DLLs \
+  CP RM CONTEXT_DIFF LibGmp GhcWithRegisterised LibsReadline \
+  $(USER_WAY_NAMES) $(USER_WAY_OPTS)
 
 #
 # When creating a binary distribution, we prefix the driver script
@@ -57,11 +65,18 @@ SCRIPT_SUBST_VARS := \
 ifeq "$(BIN_DIST)" "1"
 SCRIPT_PREFIX_FILES=prefix.txt
 else
-SCRIPT_SUBST_VARS += libdir libexecdir datadir bindir TOP_PWD
+SCRIPT_SUBST_VARS += libdir libexecdir datadir bindir TMPDIR TOP_PWD
 endif
 
 all :: $(DYN_LOADABLE_BITS)
 
+# don't recurse on 'make install'
+#
+ifeq "$(INSTALLING)" "1"
+all clean veryclean maintainer-clean ::
+       $(MAKE) INSTALLING=0 BIN_DIST=0 $(MFLAGS) $@
+endif
+
 #
 # Install setup:
 #   the driver goes in $(bindir), the perl script helpers
@@ -70,16 +85,7 @@ all :: $(DYN_LOADABLE_BITS)
 # 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)
+INSTALL_LIBS    += $(DYN_LOADABLE_BITS)
 
 #
 # depend setup: other directories need the driver script to compute
@@ -89,7 +95,7 @@ depend :: all
 #
 # Clean up
 #
-CLEAN_FILES += $(SCRIPT_OBJS) $(DYN_LOADABLE_BITS)
+CLEAN_FILES += $(SCRIPT_OBJS) $(SCRIPT_LINK) $(DYN_LOADABLE_BITS) ghc-[0-9].*
 
 #
 # Source distribution
@@ -98,60 +104,13 @@ SRC_DEST_FILES=$(patsubst %.prl,%.lprl,$(DYN_LOADABLE_BITS)) ghc.lprl ordering-p
 
 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)
+ghc.prl : $(TOP)/mk/version.mk
 
-
-#
-# Option vars for the special ways (that the driver has special pleading for).
 #
-
-# Way p:
-WAY_p_NAME=profiling
-WAY_p_HC_OPTS+=-fscc-profiling -DPROFILING -optc-DPROFILING
-
-# Way t:
-WAY_t_NAME+=ticky-ticky profiling
-WAY_t_HC_OPTS=-fticky-ticky -DTICKY_TICKY -optc-DTICKY_TICKY
-
-# Way `u':
-WAY_u_NAME=unregisterized (using portable C only)
-WAY_u_HC_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
-
-# 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
-
-# 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
-
-# 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
-
-#
-# 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
+# Another hack (hmm..I can see a pattern developing here :-)
+# In ghc/driver, we create a symlink from ghc-<whatever-version> 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