[project @ 1997-01-07 13:20:35 by simonm]
[ghc-hetmet.git] / ghc / lib / Makefile.libHS
1 #-----------------------------------------------------------------------------
2 # $Id: Makefile.libHS,v 1.6 1997/01/07 13:20:35 simonm Exp $
3
4 TOP = ../..
5 include $(TOP)/ghc/mk/ghc.mk
6
7 # per-build options: shared with runtime system
8 include ../mk/buildflags.mk
9
10 #       ============= ADDED BY SIMON =============
11 ifeq ($(GhcWithHscBuiltViaC),YES)
12   HC = $(GHC)
13   SuffixRule_hc_o = YES
14 else
15   HaskellSuffixRules = YES
16 endif
17 include $(TOP)/mk/rules.mk
18 #       ===========================================
19
20 # Everything here *must* be compiled with the Glasgow Haskell compiler.
21 # (Hence the use of $(GHC), rather than $(HC).)
22 # The driver will give warnings if -split-objs, but that's cool...
23
24 GHC_OPTS = \
25   -recomp -cpp -fglasgow-exts -fvia-C \
26   $(HcMaxHeapFlag) $(EXTRA_HC_OPTS)
27
28 #-----------------------------------------------------------------------------
29 # Rules for building various types of objects from HS files
30
31 # Note: the $(*_flags) module-specific flags come after the $(GHC_OPTS_..) 
32 # so that things like -O can be overriden on a per-module basis.
33
34 ifeq ($(SplitObjs),YES)
35 LIB_GHC = $(GHC) $(GHCFLAGS) -split-objs $(notdir $*) -o $@ -c
36 else
37 LIB_GHC = $(GHC) $(GHCFLAGS) -o $@ -c
38 endif
39
40 ifneq ($(GhcWithHscBuiltViaC),YES)
41 %.o : %.lhs
42         $(LIB_GHC) $($*_flags) $*.lhs
43
44 %.$(suffix)_o : %.lhs
45         $(LIB_GHC) $(GHC_OPTS_$(suffix)) $($*_flags) $*.hs
46
47 else # $(GhcWithHscBuiltViaC) == YES
48
49 %.$(suffix)_o : %.hc
50         $(LIB_GHC) $(GHC_OPTS_$(suffix)) $($*_flags) $*.hs
51 endif
52
53 #-----------------------------------------------------------------------------
54 # build the library itself...
55
56 ifeq ($(suffix), norm)
57 ARCHIVE = libHS.a                       # this one is special
58 else
59 ARCHIVE = libHS_$(suffix).a
60 endif
61
62 SRCS    = $(wildcard prelude/*.hs required/*.hs concurrent/*.hs)
63 LIBOBJS = $(SRCS:.hs=.$(suffix)_o)
64 DESTDIR = $(INSTLIBDIR_GHC)
65
66 include $(TOP)/mk/lib.mk
67
68 #-----------------------------------------------------------------------------
69 # per-module flags
70
71 # The -Onots are only because -O would not go through on
72 # a reasonably-sized machine (i.e., one I have)
73
74 ghc/PackedString_flags   = '-\#include"cbits/stgio.h"' -monly-3-regs
75 required/Directory_flags = '-\#include"cbits/stgio.h"' -monly-3-regs
76 required/System_flags    = '-\#include"cbits/stgio.h"'
77
78 ghc/ArrBase_flags       = '-fno-implicit-prelude'
79 ghc/IOBase_flags        = '-fno-implicit-prelude'
80 ghc/IOHandle_flags      = '-fno-implicit-prelude'
81 ghc/PrelBase_flags      = '-fno-implicit-prelude'
82 ghc/PrelIO_flags        = '-fno-implicit-prelude'
83 ghc/PrelList_flags      = '-fno-implicit-prelude'
84 ghc/PrelNum_flags       = '-fno-implicit-prelude'
85 ghc/PrelRead_flags      = '-fno-implicit-prelude'
86 ghc/PrelTup_flags       = '-fno-implicit-prelude'
87 ghc/STBase_flags        = '-fno-implicit-prelude'
88 glaExts/Foreign_flags   = '-fno-implicit-prelude'
89 glaExts/PackedString_flags      = '-fno-implicit-prelude'
90 glaExts/ST_flags        = '-fno-implicit-prelude'
91 required/Array_flags    = '-fno-implicit-prelude'
92 required/Char_flags     = '-fno-implicit-prelude'
93 required/IO_flags       = '-fno-implicit-prelude'
94 required/Ix_flags       = '-fno-implicit-prelude'
95 required/Maybe_flags    = '-fno-implicit-prelude'
96 required/Monad_flags    = '-fno-implicit-prelude'
97 required/Ratio_flags    = '-fno-implicit-prelude'
98
99 concurrent/Merge_flags = -iconcurrent
100 concurrent/Parallel_flags = -fglasgow-exts
101 concurrent/Concurrent_flags = -iconcurrent
102
103 #-----------------------------------------------------------------------------
104 # Depend and install stuff
105
106 MKDEPENDHS_OPTS += -I$(GHC_INCLUDES)
107 MKDEPENDHS_OPTS += -irequired:ghc:hbc:glaExts:concurrent
108 MKDEPENDHS_OPTS += $(foreach way,$(WAY_SUFFIXES),-s .$(way))
109
110 # Todo: make this a generic include of hsdepend.mk or something.
111 depend :: $(SRCS)
112         $(MKDEPENDHS) $(MKDEPENDHSFLAGS) -- $(GHCFLAGS) -- -f .depend $(SRCS)
113
114 #-----------------------------------------------------------------------------
115 # install hi files
116
117 ifeq ($(suffix),norm)
118 HI_FILES = $(SRCS:.hs=.hi)
119 else
120 HI_FILES = $(SRCS:.hs=.$(suffix)_hi)
121 endif
122
123 install :: $(HI_FILES)
124         $(INSTALL) $(INSTDATAFLAGS) $(HI_FILES) $(INSTIMPORTSDIR_GHC)