[project @ 2002-01-29 19:26:38 by krasimir]
[ghc-hetmet.git] / ghc / driver / Makefile
index e6b7fec..a7667bf 100644 (file)
 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
+# hack for ghci-inplace script, see below
+INSTALLING=1
 
-SCRIPT_PROG = ghc-$(ProjectVersion)
-SCRIPT_LINK = ghc
-SCRIPT_OBJS = ghc.prl
-INTERP=perl
+ifeq "$(INSTALLING)" "1"       
+SUBDIRS = mangler split ghc ghci
+endif
 
-#
-# 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.
-#
+# -----------------------------------------------------------------------------
+# package configuration files...
 
-USER_WAY_NAMES = $(foreach way,$(USER_WAYS),WAY_$(way)_NAME)
-USER_WAY_OPTS  = $(foreach way,$(USER_WAYS),WAY_$(way)_REAL_OPTS)
+PKGCONF_OPTS = "$(TARGETPLATFORM)"             \
+              "$(CURRENT_DIR)"                 \
+              "$(HaveLibGmp)"                  \
+              "$(LibsReadline)"                \
+              "$(GHC_LIB_DIR)"                 \
+              "$(GHC_RUNTIME_DIR)"             \
+              "$(GHC_UTILS_DIR)"               \
+              "$(GHC_INCLUDE_DIR)"             \
+              "$(X_CFLAGS)"                    \
+              "$(X_LIBS)"
 
-ifeq "$(INSTALLING)" "1"
-TOP_PWD := $(prefix)
-else
-TOP_PWD := $(FPTOOLS_TOP_ABS)
-endif
+# the latter two are needed to setup the package details for hslibs/xlib
 
-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 EnableWin32DLLs \
-  CP RM CONTEXT_DIFF LibGmp \
-  $(USER_WAY_NAMES) $(USER_WAY_OPTS)
+SRC_HC_OPTS += -fglasgow-exts -cpp 
 
-#
-# 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. 
-#
+ghc_407_at_least = $(shell if (test $(GhcCanonVersion) -ge 407); then echo YES; else echo NO; fi)
 
-ifeq "$(BIN_DIST)" "1"
-SCRIPT_PREFIX_FILES=prefix.txt
+ifeq "$(ghc_407_at_least)" "YES"
+SRC_HC_OPTS += -package concurrent -package text
+ifneq "$(mingw32_TARGET_OS)" "1"
+SRC_HC_OPTS += -package posix
+endif
 else
-SCRIPT_SUBST_VARS += libdir libexecdir datadir bindir TMPDIR TOP_PWD
+SRC_HC_OPTS += -syslib concurrent -syslib posix -syslib misc
 endif
 
-all :: $(DYN_LOADABLE_BITS)
+SRC_HC_OPTS += -DWANT_PRETTY
+SRC_HC_OPTS += $(filter -D% -U%,$(GhcRtsCcOpts))
 
-#
-# 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)
+all :: package.conf package.conf.inplace
 
-#
-# 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)
+HS_OBJS = Package.o PackageSrc.o Utils.o
+HS_PROG = pkgconf
 
-#
-# depend setup: other directories need the driver script to compute
-# their dependencies, so `depend' is simply an alias for `all' here.
-depend :: all
+package.conf.inplace : $(HS_PROG)
+       ./$(HS_PROG) in-place $(PKGCONF_OPTS) >$@
 
-#
-# Clean up
-#
-CLEAN_FILES += $(SCRIPT_OBJS) $(SCRIPT_LINK) $(DYN_LOADABLE_BITS) ghc-[0-9].*
+package.conf : pkgconf
+       ./$(HS_PROG) install $(PKGCONF_OPTS) >$@
 
-#
-# Source distribution
-#
-SRC_DEST_FILES=$(patsubst %.prl,%.lprl,$(DYN_LOADABLE_BITS)) ghc.lprl ordering-passes test_mangler
+Package.o : ../utils/ghc-pkg/Package.hs
 
-include $(TOP)/mk/target.mk
+override datadir = $(libdir)
+INSTALL_DATAS += package.conf ghc-usage.txt
 
-ghc.prl : $(TOP)/mk/version.mk
+CLEAN_FILES += Main.hi pkgconf package.conf.inplace package.conf
 
-# 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)
+# -----------------------------------------------------------------------------
 
-#
-# 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
+include $(TOP)/mk/target.mk