remove conflicting import for nhc98
[haskell-directory.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/Parallel \
12         Control/Monad \
13         Control/Monad/ST \
14         Data \
15         Data/ByteString \
16         Data/ByteString/Lazy \
17         Data/Generics \
18         Data/Array \
19         Data/Array/IO \
20         Data/STRef \
21         Debug \
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         System/Process \
32         System/Directory \
33         Text \
34         Text/PrettyPrint \
35         Text/ParserCombinators \
36         Text/Show \
37         Text/Read
38
39 PACKAGE = base
40 VERSION = 2.0
41
42 SRC_HC_OPTS += -fglasgow-exts -cpp -Iinclude -"\#include" HsBase.h
43 SRC_HSC2HS_OPTS += -Iinclude -I$(GHC_INCLUDE_DIR)
44
45 # -----------------------------------------------------------------------------
46 # Per-module flags
47
48 # ESSENTIAL, for getting reasonable performance from the I/O library:
49 SRC_HC_OPTS += -funbox-strict-fields
50
51 # -----------------------------------------------------------------------------
52 # PrimOpWrappers
53
54 # These two lines are required for pre-processing compiler/prelude/primops.txt
55 SRC_CPP_OPTS += -I$(GHC_INCLUDE_DIR)
56 SRC_CPP_OPTS += ${GhcCppOpts}
57
58 ifeq "$(BootingFromHc)" "YES"
59 GHC/PrimopWrappers.hs:
60         touch GHC/PrimopWrappers.hs
61 else
62 GHC/PrimopWrappers.hs: $(GHC_COMPILER_DIR)/prelude/primops.txt GHC/Prim.hs
63         @$(RM) $@
64         $(GENPRIMOP) --make-haskell-wrappers < $< > $@
65 endif
66
67 GHC/Prim.hs: $(GHC_COMPILER_DIR)/prelude/primops.txt
68         @$(RM) $@
69         $(GENPRIMOP) --make-haskell-source < $< > $@
70
71 EXCLUDED_SRCS = GHC/Prim.hs
72 EXTRA_HADDOCK_SRCS = GHC/Prim.hs
73
74 boot :: GHC/PrimopWrappers.hs
75
76 EXTRA_SRCS  += GHC/PrimopWrappers.hs
77 CLEAN_FILES += GHC/PrimopWrappers.hs
78
79 # -----------------------------------------------------------------------------
80 ifneq "$(BootingFromHc)" "YES"
81 STUBOBJS += \
82    Control/Concurrent_stub.$(way_)o
83
84 CLEAN_FILES += $(STUBOBJS) \
85    Control/Concurrent_stub.[ch]
86 endif
87
88 #-----------------------------------------------------------------------------
89 #       Building the library for GHCi
90 #
91 # The procedure differs from that in fptools/mk/target.mk in one way:
92 #  (*) on Win32 we must split it into two, because a single .o file can't
93 #      have more than 65536 relocations in it [due to a bug in the GNU
94 #      linker.]
95
96 OBJECT_FILEFORMAT=unknown
97 ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
98 OBJECT_FILEFORMAT=PEi
99 endif
100 ifeq "$(TARGETPLATFORM)" "i386-unknown-cygwin32"
101 OBJECT_FILEFORMAT=PEi
102 endif
103
104 ifeq "$(OBJECT_FILEFORMAT)" "PEi"
105
106 # Turn off standard rule which creates HSbase.o from LIBOBJS.
107 #DONT_WANT_STD_GHCI_LIB_RULE=YES
108
109 GHCI_LIBOBJS = $(HS_OBJS)
110
111 INSTALL_LIBS += HSbase.o
112
113 endif # OBJECT_FILEFORMAT = PEi
114
115
116 # -----------------------------------------------------------------------------
117 # Doc building with Haddock
118
119 EXCLUDED_HADDOCK_SRCS = \
120         GHC/PrimopWrappers.hs \
121         GHC/PArr.hs
122
123 SRC_HADDOCK_OPTS += -t "Haskell Hierarchical Libraries ($(PACKAGE) package)" \
124         --no-implicit-prelude
125
126 # -----------------------------------------------------------------------------
127
128 GHC/ForeignPtr.o Data/Array/IO/Internals.o Data/Array/Base.o \
129   Data/Generics/Instances.o Data/Complex.o Data/Array.o Data/STRef.o \
130   Data/Dynamic.o Data/Typeable.o Data/PackedString.o System/Mem/Weak.o \
131   System/Mem/StableName.o System/Posix/Types.o Control/Monad/ST.o \
132   Control/Exception.o Foreign/C/Types.o Foreign/ForeignPtr.o: include/Typeable.h
133
134 System/Posix/Types.o Foreign/C/Types.o: include/CTypes.h
135
136 # -----------------------------------------------------------------------------
137
138 DIST_CLEAN_FILES += base.buildinfo config.cache config.status
139
140 include $(TOP)/mk/target.mk