[project @ 2003-08-05 12:13:29 by panne]
[ghc-base.git] / Makefile
1 TOP=..
2 include $(TOP)/mk/boilerplate.mk
3
4 # -----------------------------------------------------------------------------
5
6 SUBDIRS = cbits include
7
8 ALL_DIRS = \
9         Control \
10         Control/Concurrent \
11         Control/Monad \
12         Control/Monad/ST \
13         Data \
14         Data/Generics \
15         Data/Array \
16         Data/Array/IO \
17         Data/STRef \
18         Debug \
19         Foreign \
20         Foreign/C \
21         Foreign/Marshal \
22         GHC \
23         System \
24         System/Console \
25         System/Mem \
26         System/IO \
27         System/Posix \
28         Text \
29         Text/Html \
30         Text/PrettyPrint \
31         Text/ParserCombinators \
32         Text/Regex \
33         Text/Show \
34         Text/Read
35
36 PACKAGE = base
37
38 SRC_HC_OPTS += -fglasgow-exts -cpp -Iinclude -\#include HsBase.h
39 SRC_HSC2HS_OPTS += -Iinclude -I$(FPTOOLS_TOP)/ghc/includes
40
41 # Make sure we can get hold of regex.h
42 ifneq "$(HavePosixRegex)" "YES"
43 SRC_HC_OPTS     += -Icbits/regex
44 SRC_HSC2HS_OPTS += -Icbits/regex
45 endif
46
47 # -----------------------------------------------------------------------------
48 # Per-module flags
49
50 # ESSENTIAL, for getting reasonable performance from the I/O library:
51 SRC_HC_OPTS += -funbox-strict-fields
52
53 # -----------------------------------------------------------------------------
54 # PrimOpWrappers
55
56 # These two lines are required for pre-processing ghc/compiler/prelude/primops.txt
57 SRC_CPP_OPTS += -I$(GHC_INCLUDE_DIR)
58 SRC_CPP_OPTS += ${GhcCppOpts}
59
60 ifeq "$(BootingFromHc)" "YES"
61 GHC/PrimopWrappers.hs:
62         touch GHC/PrimopWrappers.hs
63 else
64 GHC/PrimopWrappers.hs: $(GHC_COMPILER_DIR)/prelude/primops.txt
65         @$(RM) $@
66         $(GHC_GENPRIMOP) --make-haskell-wrappers < $< > $@
67 endif
68
69 boot :: GHC/PrimopWrappers.hs
70
71 EXTRA_SRCS  += GHC/PrimopWrappers.hs
72 CLEAN_FILES += GHC/PrimopWrappers.hs
73
74 #-----------------------------------------------------------------------------
75 #       Building the library for GHCi
76 #
77 # The procedure differs from that in fptools/mk/target.mk in one way:
78 #  (*) on Win32 we must split it into two, because a single .o file can't
79 #      have more than 65536 relocations in it [due to a bug in the GNU
80 #      linker.]
81
82 OBJECT_FILEFORMAT=unknown
83 ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
84 OBJECT_FILEFORMAT=PEi
85 endif
86 ifeq "$(TARGETPLATFORM)" "i386-unknown-cygwin32"
87 OBJECT_FILEFORMAT=PEi
88 endif
89
90 ifeq "$(OBJECT_FILEFORMAT)" "PEi"
91
92 # Turn off standard rule which creates HSbase.o from LIBOBJS.
93 DONT_WANT_STD_GHCI_LIB_RULE=YES
94
95 GHCI_LIBOBJS = $(HS_OBJS)
96
97 INSTALL_LIBS += HSbase1.o HSbase2.o HSbase3.o
98
99 endif # OBJECT_FILEFORMAT = PEi
100
101
102 # -----------------------------------------------------------------------------
103 # Doc building with Haddock
104
105 EXCLUDED_HADDOCK_SRCS = \
106         GHC/PrimopWrappers.hs \
107         GHC/PArr.hs
108
109 SRC_HADDOCK_OPTS += -t "Haskell Core Libraries (base package)" \
110         --no-implicit-prelude -p prologue.txt
111
112 # -----------------------------------------------------------------------------
113
114 include $(TOP)/mk/target.mk
115
116 ifeq "$(OBJECT_FILEFORMAT)" "PEi"
117 HSbase.o : $(GHCI_LIBOBJS)
118         $(LD) -r $(LD_X) -o HSbase1.o $(filter     GHC/%, $(GHCI_LIBOBJS))
119         $(LD) -r $(LD_X) -o HSbase2.o $(filter     Text/%, $(GHCI_LIBOBJS))
120         $(LD) -r $(LD_X) -o HSbase3.o $(filter-out GHC/% Text/%, $(GHCI_LIBOBJS))
121         @touch HSbase.o
122 endif # OBJECT_FILEFORMAT = PEi
123