[project @ 2000-09-05 10:16:40 by simonmar]
[ghc-hetmet.git] / ghc / driver / Makefile
index 31c6869..581c9c5 100644 (file)
 #-----------------------------------------------------------------------------
+# $Id: Makefile,v 1.44 2000/09/05 10:16:41 simonmar Exp $
 #
 
 TOP=..
 CURRENT_DIR=ghc/driver
 include $(TOP)/mk/boilerplate.mk
 
-INSTALLING=0
-
-DYN_LOADABLE_BITS = \
-       ghc-asm.prl \
-       ghc-iface.prl \
-       ghc-consist.prl \
-       ghc-split.prl
-
-SCRIPT_PROG = ghc-$(GhcProjectVersion)
-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 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
+HS_PROG = ghc-$(ProjectVersion)
+HS_SRCS = Config.hs Package.hs GetImports.hs Main.hs
+MKDEPENDHS_SRCS = Config.hs Main.hs GetImports.hs PackageSrc.hs
+LINK = ghc
+
+SUBDIRS = mangler split stats
+
+# -----------------------------------------------------------------------------
+# Create driver configuration
+
+boot :: Config.hs
+
+Config.hs : $(FPTOOLS_TOP)/mk/config.mk Makefile
+       @$(RM) -f Config.hs
+       @echo -n "Creating Config.hs ... "
+       @echo "module Config where" >>Config.hs
+       @echo "cProjectName          = \"$(ProjectName)\"" >> Config.hs
+       @echo "cProjectVersion       = \"$(ProjectVersion)\"" >> Config.hs
+       @echo "cProjectVersionInt    = \"$(ProjectVersionInt)\"" >> Config.hs
+       @echo "cHscIfaceFileVersion  = \"$(HscIfaceFileVersion)\"" >> Config.hs
+       @echo "cHOSTPLATFORM         = \"$(HOSTPLATFORM)\"" >> Config.hs
+       @echo "cTARGETPLATFORM       = \"$(TARGETPLATFORM)\"" >> Config.hs
+       @echo "cCURRENT_DIR          = \"$(CURRENT_DIR)\"" >> 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 "cGHC_DRIVER_DIR       = \"$(GHC_DRIVER_DIR)\"" >> Config.hs
+       @echo "cGCC                  = \"$(WhatGccIsCalled)\"" >> Config.hs
+       @echo "cGhcWithNativeCodeGen = \"$(GhcWithNativeCodeGen)\"" >> Config.hs
+       @echo "cLeadingUnderscore    = \"$(LeadingUnderscore)\"" >> Config.hs
+       @echo "cGHC_UNLIT            = \"$(GHC_UNLIT)\"" >> Config.hs
+       @echo "cGHC_HSC              = \"$(GHC_HSC)\"" >> Config.hs
+       @echo "cGHC_MANGLER          = \"$(GHC_MANGLER)\"" >> Config.hs
+       @echo "cGHC_SPLIT            = \"$(GHC_SPLIT)\"" >> Config.hs
+       @echo "cGHC_STATS            = \"$(GHC_STATS)\"" >> Config.hs
+       @echo "cGHC_SYSMAN           = \"$(GHC_SYSMAN)\"" >> Config.hs
+       @echo "cEnableWin32DLLs      = \"$(EnableWin32DLLs)\"" >> Config.hs
+       @echo "cCP                   = \"$(CP)\"" >> Config.hs
+       @echo "cRM                   = \"$(RM)\"" >> Config.hs
+       @echo "cCONTEXT_DIFF         = \"$(CONTEXT_DIFF)\"" >> Config.hs
+       @echo "cHaveLibGmp           = \"$(HaveLibGmp)\"" >> Config.hs
+       @echo "cGhcWithRegisterised  = \"$(GhcWithRegisterised)\"" >> Config.hs
+       @echo "cUSER_WAY_NAMES       = \"$(USER_WAY_NAMES)\"" >> Config.hs
+       @echo "cUSER_WAY_OPTS        = \"$(USER_WAY_OPTS)\"" >> Config.hs
+       @echo "clibdir               = \"$(libdir)\"" >> Config.hs
+       @echo "clibexecdir           = \"$(libexecdir)\"" >> Config.hs
+       @echo "cdatadir              = \"$(datadir)\"" >> Config.hs
+       @echo "cbindir               = \"$(bindir)\"" >> Config.hs
+       @echo "cDEFAULT_TMPDIR       = \"$(DEFAULT_TMPDIR)\"" >> Config.hs
+       @echo "cFPTOOLS_TOP_ABS      = \"$(FPTOOLS_TOP_ABS)\"" >> Config.hs
+       @echo "cRAWCPP               = \"$(RAWCPP)\"" >> Config.hs
+       @echo done.
+
+CLEAN_FILES += Config.hs
+
+# -----------------------------------------------------------------------------
+# create ghc-inplace, a convenient way to run ghc from the build tree...
+
+all :: ghc-inplace
+
+ghc-inplace : ghc
+       @$(RM) $@
+       echo '#!/bin/sh' >>$@
+       echo exec $(FPTOOLS_TOP_ABS)/ghc/driver/ghc -B$(FPTOOLS_TOP_ABS) '"$$@"' >>$@
+       chmod 755 $@
+
+CLEAN_FILES += ghc-inplace
+
+# -----------------------------------------------------------------------------
+# package configuration files...
+
+all :: package.conf package.conf.inplace
+
+pkgconf : Config.o Package.o PackageSrc.o
+       $(HC) $(HC_OPTS) $(LD_OPTS) Config.o Package.o PackageSrc.o -o pkgconf
+
+package.conf.inplace : pkgconf
+       ./pkgconf in-place >$@
+
+package.conf : pkgconf
+       ./pkgconf install >$@
+
+INSTALL_DATAS += package.conf
+
+CLEAN_FILES += pkgconf package.conf.inplace package.conf
+
+# -----------------------------------------------------------------------------
+# installation...
+
+INSTALL_PROGS = ghc-$(ProjectVersion)
+
+override datadir=$(libdir)
+INSTALL_DATAS += ghc-usage.txt
+
+# -----------------------------------------------------------------------------
 
 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).
-#
-# 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 )
-
-# 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
+# we need the driver for generating dependencies...
+boot :: all
 
-# Way `u':
-WAY_u_NAME=unregisterized (using portable C only)
-WAY_u_HC_OPTS=
+# -----------------------------------------------------------------------------
+# Create link to from ghc-x.xx to ghc...
 
-# Way `mc': concurrent
-WAY_mc_NAME=concurrent
-WAY_mc_HC_OPTS+=-fstack-check -fconcurrent -D__CONCURRENT_HASKELL__ -optc-DCONCURRENT
+all :: $(LINK)
 
-# Way `mr': 
-WAY_mr_NAME=profiled concurrent
-WAY_mr_HC_OPTS+=-fstack-check -fconcurrent -fscc-profiling -D__CONCURRENT_HASKELL__ -DPROFILING -optc-DCONCURRENT -optc-DPROFILING
+$(LINK) : $(HS_PROG)
+       @if ( $(PERL) -e '$$fn="$(LINK)"; exit ((! -f $$fn || -l $$fn) ? 0 : 1);' ); then \
+          echo "Creating a symbolic link from $(HS_PROG) to $(LINK)"; \
+          $(RM) $(LINK); \
+          $(LN_S) $(HS_PROG) $(LINK); \
+        else \
+          echo "Creating a symbolic link from $(HS_PROG) to $(LINK) failed: \`$(LINK)' already exists"; \
+          echo "Perhaps remove \`$(LINK)' manually?"; \
+          exit 1; \
+        fi;
 
-# Way `mt': 
-WAY_mt_NAME=ticky-ticky concurrent
-WAY_mt_HC_OPTS+=-fstack-check -fconcurrent -fticky-ticky -D__CONCURRENT_HASKELL__ -DTICKY-TICKY -optc-DCONCURRENT -optc-DTICKY_TICKY
-
-# Way `mp': 
-WAY_mp_NAME=parallel
-WAY_mp_HC_OPTS+=-fstack-check -fconcurrent -D__PARALLEL_HASKELL__ -optc-DPAR -optc-DCONCURRENT
-
-#
-# 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
+CLEAN_FILES += $(LINK)
 
-#
-# 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
+install ::
+       @if ( $(PERL) -e '$$fn="$(bindir)/$(LINK)"; exit ((! -f $$fn || -l $$fn) ? 0 : 1);' ); then \
+          echo "Creating a symbol link from $(HS_PROG) to $(LINK) in $(bindir)"; \
+          $(RM) $(bindir)/$(LINK); \
+          $(LN_S) $(HS_PROG) $(bindir)/$(LINK); \
+        else \
+          echo "Creating a symbol link from $(HS_PROG) to $(LINK) in $(bindir) failed: \`$(bindir)/$(LINK)' already exists"; \
+          echo "Perhaps remove \`$(bindir)/$(LINK)' manually?"; \
+          exit 1; \
+        fi;