[project @ 2001-03-23 16:36:20 by simonmar]
[ghc-hetmet.git] / ghc / driver / Makefile
index 52b04e1..5066d64 100644 (file)
 #-----------------------------------------------------------------------------
-# $Id: Makefile,v 1.27 1999/11/25 10:38:59 simonpj 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
+# $Id: Makefile,v 1.56 2001/03/19 18:15:59 sewardj Exp $
 #
-# 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
 
+# hack for ghci-inplace script, see below
 INSTALLING=1
 
-DYN_LOADABLE_BITS = \
-       ghc-asm.prl \
-       ghc-iface.prl \
-       ghc-consist.prl \
-       ghc-split.prl
-
-INSTALLED_SCRIPT_PROG  = ghc-$(ProjectVersion)
-INPLACE_SCRIPT_PROG    = ghc-inplace
+ifeq "$(INSTALLING)" "1"       
+SUBDIRS = mangler split
+endif
 
-ifeq "$(INSTALLING)" "1"
-TOP_PWD        := $(prefix)
-SCRIPT_PROG    =  $(INSTALLED_SCRIPT_PROG)
-SCRIPT_LINK    =  ghc
+# -----------------------------------------------------------------------------
+# Create compiler configuration
+
+CURRENT_DIR=ghc/compiler
+CONFIG_HS = Config.hs
+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 "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.
+
+CLEAN_FILES += $(CONFIG_HS)
+
+# -----------------------------------------------------------------------------
+# package configuration files...
+
+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)
-SCRIPT_PROG    =  $(INPLACE_SCRIPT_PROG)
+SRC_HC_OPTS += -fglasgow-exts -cpp -package concurrent -package text
+endif
+else
+SRC_HC_OPTS += -fglasgow-exts -cpp -syslib concurrent -syslib posix -syslib misc
 endif
 
-SCRIPT_OBJS = ghc.prl
-INTERP=perl
+SRC_HC_OPTS += -DWANT_PRETTY
 
-#
-# 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.
-#
+all :: package.conf package.conf.inplace
 
-USER_WAY_NAMES = $(foreach way,$(USER_WAYS),WAY_$(way)_NAME)
-USER_WAY_OPTS  = $(foreach way,$(USER_WAYS),WAY_$(way)_REAL_OPTS)
+pkgconf : Config.o Package.o PackageSrc.o Utils.o
+       $(HC) $(HC_OPTS) $(LD_OPTS) Config.o Package.o PackageSrc.o Utils.o -o pkgconf
 
-SCRIPT_SUBST_VARS := \
-  INSTALLING \
-  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_MKDEPENDHS GHC_HSC GHC_SYSMAN EnableWin32DLLs \
-  CP RM CONTEXT_DIFF LibGmp GhcWithRegisterised \
-  $(USER_WAY_NAMES) $(USER_WAY_OPTS)
+package.conf.inplace : pkgconf
+       ./pkgconf in-place >$@
 
-#
-# 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. 
-#
+package.conf : pkgconf
+       ./pkgconf install >$@
+
+Package.o : ../utils/ghc-pkg/Package.hs
+
+INSTALL_DATAS += package.conf
 
-ifeq "$(BIN_DIST)" "1"
-SCRIPT_PREFIX_FILES=prefix.txt
+CLEAN_FILES += pkgconf package.conf.inplace package.conf
+
+# -----------------------------------------------------------------------------
+# ghci script
+
+ifeq "$(INSTALLING)" "1"
+ifeq "$(BIN_DIST)"   "1"
+GHCBIN=$$\"\"bindir/ghc
+else
+GHCBIN=$(bindir)/ghc
+endif # BIN_DIST
 else
-SCRIPT_SUBST_VARS += libdir libexecdir datadir bindir TMPDIR TOP_PWD
+GHCBIN=$(FPTOOLS_TOP_ABS)/ghc/compiler/ghc
 endif
 
-all :: $(DYN_LOADABLE_BITS)
+INSTALLED_SCRIPT_PROG  = ghci-$(ProjectVersion)
+INPLACE_SCRIPT_PROG    = ghci-inplace
+
+SCRIPT_OBJS      = ghci.sh
+INTERP           = $(SHELL)
+SCRIPT_SUBST_VARS = GHCBIN TOPDIROPT
+INSTALL_SCRIPTS  += $(SCRIPT_PROG) ghc5
+
+ifeq "$(INSTALLING)" "1"
+SCRIPT_PROG    =  $(INSTALLED_SCRIPT_PROG)
+TOPDIROPT      =  
+LINK           =  ghci
+else
+TOPDIROPT      =  -B$(FPTOOLS_TOP_ABS)
+SCRIPT_PROG    =  $(INPLACE_SCRIPT_PROG)
+endif
 
 # don't recurse on 'make install'
 #
 ifeq "$(INSTALLING)" "1"
-all clean veryclean maintainer-clean ::
+all clean distclean maintainer-clean ::
        $(MAKE) INSTALLING=0 BIN_DIST=0 $(MFLAGS) $@
 endif
 
-#
-# 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)
+# -----------------------------------------------------------------------------
+# installation...
 
-#
-# depend setup: other directories need the driver script to compute
-# their dependencies, so `depend' is simply an alias for `all' here.
-depend :: all
+override datadir=$(libdir)
+INSTALL_DATAS += ghc-usage.txt
 
-#
-# Clean up
-#
-CLEAN_FILES += $(SCRIPT_OBJS) $(SCRIPT_LINK) $(DYN_LOADABLE_BITS) ghc-[0-9].*
+ghc5 :
+       rm -f ghc5
+       echo "#!/bin/sh" > ghc5
+       echo "# You (the user) need to set GHC_TOPDIR to make it work!" >> ghc5
+       echo "GHC_TOPDIR=/path/to/root/of/ghc/installation/tree" >> ghc5
+       echo "GHC_PLATFORM=$(TARGETPLATFORM)" >> ghc5
+       cat ghc5.sh >> ghc5
 
-#
-# Source distribution
-#
-SRC_DEST_FILES=$(patsubst %.prl,%.lprl,$(DYN_LOADABLE_BITS)) ghc.lprl ordering-passes test_mangler
 
-include $(TOP)/mk/target.mk
 
-ghc.prl : $(TOP)/mk/version.mk
+# -----------------------------------------------------------------------------
 
-#
-# 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