[project @ 2000-11-14 14:33:02 by simonmar]
[ghc-hetmet.git] / ghc / lib / std / Makefile
index 0accdab..5597c9c 100644 (file)
@@ -22,22 +22,33 @@ endif
 #      Setting the standard variables
 #
 
-LIBRARY = libHS$(_way).a
-HS_SRCS        = $(wildcard *.lhs)
-HS_OBJS = $(HS_SRCS:.lhs=.$(way_)o)
-LIBOBJS = $(HS_OBJS)
-HS_IFACES= $(HS_SRCS:.lhs=.$(way_)hi) PrelGHC.$(way_)hi
+HC        = $(GHC_INPLACE)
+MKDEPENDHS = $(GHC_INPLACE)
 
+ifneq "$(DLLized)" "YES"
+PACKAGE = -package-name std
+else
+# Hack by SPJ to delay if-then-else until the pattern rule when we have $*
+PACKAGE = $(subst ~, ,$(word $(words dummy $(findstring $(notdir $*), PrelMain )), -package-name~std))
+endif
+
+HSLIB = std
+
+ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
+LIBOBJS = $(filter-out PrelHugs.$(way_)o,$(HS_OBJS))
+endif
 
 #-----------------------------------------------------------------------------
 #      Setting the GHC compile options
 
-SRC_HC_OPTS += -recomp -cpp -fglasgow-exts -fvia-C -Rghc-timing $(GhcLibHcOpts)
+SRC_HC_OPTS += -recomp -cpp -fvia-C -fglasgow-exts $(GhcLibHcOpts) $(PACKAGE)
+ifneq "$(DLLized)" "YES"
+SRC_HC_OPTS += -static
+endif
 
-#
-# Profiling options
-WAY_p_HC_OPTS += -GPrelude
-WAY_mr_HC_OPTS += -GPrelude
+ifdef USE_REPORT_PRELUDE
+SRC_HC_OPTS += -DUSE_REPORT_PRELUDE=1
+endif
 
 #
 # Object and interface files have suffixes tagged with their ways
@@ -46,30 +57,43 @@ ifneq "$(way)" ""
 SRC_HC_OPTS += -hisuf $(way_)hi
 endif
 
-# per-module flags
-PrelArr_HC_OPTS     += -monly-2-regs
-Directory_HC_OPTS   += -monly-3-regs 
-Time_HC_OPTS        += -monly-3-regs -H16m
-
-# Far too much heap is needed to compile PrelNum with -O at the
+# Far too much heap is needed to compile PrelNumExtra with -O at the
 # moment, but there you go..
-PrelNum_HC_OPTS     += -H30m
-# Note: this option has to go in the Makefile rather than in an
-# OPTIONS line in the source file. The reason being that we want
-# to override the SRC_HC_OPTS of -O, and anything option coming
-# from the Makefile overrides what's in OPTIONS lines. (mumble_HC_OPTS
-# does override SRC_HC_OPTS settings)
-PrelUnsafe_HC_OPTS           += -Onot
-
-PrelBase_HC_OPTS         += -H12m
-PrelRead_HC_OPTS         += -H12m
-PrelTup_HC_OPTS          += -H12m
-PrelArr_HC_OPTS          += -H8m
-PrelHandle_HC_OPTS       += -H12m
-Time_HC_OPTS             += -H8m
-Complex_HC_OPTS          += -H10m
-IO_HC_OPTS              += -H12m
-
+<<<<<<< Makefile
+# PrelNumExtra_HC_OPTS     += -H24m -K2m
+# 
+# PrelPack_HC_OPTS      += -K4m
+# PrelBase_HC_OPTS         += -H12m
+# PrelRead_HC_OPTS         += -H20m
+# PrelTup_HC_OPTS          += -H12m -K2m
+# PrelNum_HC_OPTS               += -H12m -K4m
+# PrelArr_HC_OPTS          += -H8m
+# PrelHandle_HC_OPTS       += -H20m
+# Time_HC_OPTS             += -H24m -K2m
+# Complex_HC_OPTS          += -H10m
+# IO_HC_OPTS            += -H12m
+# List_HC_OPTS             += -H8m
+# Directory_HC_OPTS        += -H8m
+=======
+PrelNumExtra_HC_OPTS     += +RTS -H24m -K2m -RTS
+>>>>>>> 1.50
+
+<<<<<<< Makefile
+=======
+PrelPack_HC_OPTS        += +RTS -K4m -RTS
+PrelBase_HC_OPTS         += +RTS -H12m -RTS
+PrelRead_HC_OPTS         += +RTS -H20m -RTS
+PrelTup_HC_OPTS          += +RTS -H12m -K2m -RTS
+PrelNum_HC_OPTS                 += +RTS -H12m -K4m -RTS
+PrelArr_HC_OPTS          += +RTS -H8m -RTS
+PrelHandle_HC_OPTS       += +RTS -H20m -RTS
+Time_HC_OPTS             += +RTS -H24m -K2m -RTS
+Complex_HC_OPTS          += +RTS -H10m -RTS
+IO_HC_OPTS              += +RTS -H12m -RTS
+List_HC_OPTS             += +RTS -H8m -RTS
+Directory_HC_OPTS        += +RTS -H8m -RTS
+
+>>>>>>> 1.50
 #-----------------------------------------------------------------------------
 #      Dependency generation
 
@@ -83,6 +107,33 @@ PrelGHC.$(way_)hi   : PrelGHC.hi-boot
 
 boot :: PrelGHC.hi $(foreach way, $(WAYS), PrelGHC.$(way)_hi)
 
+DLL_DESCRIPTION="GHC-compiled Haskell Prelude"
+
+ifeq "$(DLLized)" "YES"
+HS_SRCS := $(filter-out PrelMain.lhs PrelHugs.lhs, $(HS_SRCS))
+endif
+
+# PrelMain.dll_o isn't to be included in the final .a, 
+# but it needs to be generated
+ifeq "$(DLLized)" "YES"
+all :: PrelMain.dll_o
+endif
+
+CLEAN_FILES += PrelGHC.hi $(foreach way, $(WAYS), PrelGHC.$(way)_hi)
+
+#
+# If we're building the unregisterised way, it may well be for Hugs.
+# In that case, remember to bind the cbits objects into a single file
+# which hugs can load as an auxiliary object file when loading the Prelude.
+#
+ifeq "$(way)" "u"
+all :: libHSstd_cbits.u_o
+CLEAN_FILES += libHSstd_cbits.u_o
+libHSstd_cbits.u_o:
+       $(RM) libHSstd_cbits.u_o
+       ld -r -o libHSstd_cbits.u_o cbits/*.o
+endif
+
 #-----------------------------------------------------------------------------
 #      Installation; need to install .hi files as well as libraries
 #
@@ -97,12 +148,13 @@ override datadir:=$(libdir)/imports/std
 #
 # Files to install from here
 # 
-INSTALL_LIBS  += $(LIBRARY)
-INSTALL_DATAS += $(HS_IFACES)
+ifeq "$(DLLized)" "YES"
+INSTALL_LIBS  += PrelMain.dll_o
+endif
 
-include $(TOP)/mk/target.mk
+INSTALL_DATAS += PrelGHC.$(way_)hi
+ifeq "$(DLLized)" "YES"
+INSTALL_DATAS := $(filter-out PrelHugs.$(way_)hi,$(INSTALL_DATAS))
+endif
 
-glaExts/PackedString_HC_OPTS += -monly-3-regs
-concurrent/Parallel_HC_OPTS  += -fglasgow-exts
-glaExts/Int_HC_OPTS          += -H8m
-glaExts/Word_HC_OPTS         += -H8m
+include $(TOP)/mk/target.mk