[project @ 1997-05-26 05:15:12 by sof]
[ghc-hetmet.git] / ghc / lib / Makefile
index cb4dea2..e4317e8 100644 (file)
@@ -4,7 +4,7 @@
 #
 #              Makefile for building the GHC Prelude libraries umpteen ways
 #
-#      $Id: Makefile,v 1.7 1997/03/20 17:32:01 sof Exp $
+#      $Id: Makefile,v 1.10 1997/05/26 05:15:12 sof Exp $
 #
 #      
 #################################################################################
@@ -31,12 +31,12 @@ LIBRARY = libHS$(_way).a
 HS_SRCS        = $(foreach d, $(LIB_DIRS), $(wildcard $(d)/*.lhs))
 HS_OBJS = $(HS_SRCS:.lhs=.$(way_)o)
 LIBOBJS = $(HS_OBJS)
-HS_IFACES= $(HS_SRCS:.lhs=.$(way_)hi) ghc/GHC.hi
+HS_IFACES= $(HS_SRCS:.lhs=.$(way_)hi) ghc/GHC.$(way_)hi
 
 #-----------------------------------------------------------------------------
 #      Setting the GHC compile options
 
-SRC_HC_OPTS += -recomp -cpp -fglasgow-exts -fvia-C $(GhcLibHcOpts)
+SRC_HC_OPTS += -recomp -cpp -fglasgow-exts -fvia-C -Rghc-timing $(GhcLibHcOpts)
 
 #
 # Profiling options
@@ -84,8 +84,14 @@ SRC_MKDEPENDHS_OPTS += -ighc:required:glaExts:concurrent -I$(GHC_INCLUDE_DIR)
 
 HIBOOTS=GHC Main IOBase
 
+# Use variable to control this, so that we can generate
+# new boot interface files for new ways without having
+# to re-generate the old lot (followed by complete recompile).
+#
+HIBOOT_WAYS = norm $(WAYS)
+
 hi-boot :
-       @for i in norm $(WAYS); do \
+       @for i in $(HIBOOT_WAYS); do \
                echo "Booting interface files for way $$i "; \
                if [ "$$i" != "norm" ]; then \
                   j="$${i}_hi"; \