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