ghc-pkg-inplace now has .bat extension on Windows
[ghc-hetmet.git] / libraries / Makefile
1
2 # To do a fresh build:
3 #
4 #   make clean
5 #   make boot
6 #   make
7 #
8 # To rebuild a particular library <package>:
9 #
10 #   make clean.library.<package>
11 #   make build.library.<package>
12 #
13 # or the following is equivalent:
14 #
15 #   make rebuild.library.<package>
16 #
17 # To add a new library to the tree, do
18 #
19 #   darcs get http://darcs.haskell.org/packages/foo
20 #   [ -e foo/configure.ac ] && ( cd foo && autoreconf )
21 #   make build.library.foo
22
23 .PHONY: default_target
24
25 default_target: build
26
27 # Ideally we'd just include something to give us variables
28 # for paths and arguments to tools etc, and those set in mk/build.mk.
29 TOP=..
30 include $(TOP)/mk/boilerplate.mk
31
32 SUBDIRS = base old-locale old-time directory process filepath pretty \
33           template-haskell readline Cabal random haskell98
34
35 ifeq "$(GhcLibsWithUnix)" "YES"
36 SUBDIRS += unix
37 endif
38 ifeq "$(Windows)" "YES"
39 SUBDIRS += $(wildcard Win32)
40 endif
41
42 # Set GhcBootLibs=YES from the command line to work with just the libraries
43 # needed to bootstrap GHC.
44 ifneq "$(GhcBootLibs)" "YES"
45 SUBDIRS += $(wildcard regex-base)
46 SUBDIRS += $(wildcard regex-posix)
47 SUBDIRS += $(wildcard regex-compat)
48 SUBDIRS += $(wildcard parsec)
49 SUBDIRS += $(wildcard haskell-src)
50 SUBDIRS += $(wildcard html)
51 SUBDIRS += $(wildcard network)
52 SUBDIRS += $(wildcard QuickCheck)
53 SUBDIRS += $(wildcard HUnit)
54 SUBDIRS += $(wildcard mtl)
55 SUBDIRS += $(wildcard fgl)
56 SUBDIRS += $(wildcard X11)
57 SUBDIRS += $(wildcard time)
58 ifeq "$(Windows)" "NO"
59 # HGL is not working on Win32, so omit it for now.  Better not to ship it
60 # at all than to ship a broken version.
61 SUBDIRS += $(wildcard HGL)
62 endif
63 SUBDIRS += $(wildcard OpenGL)
64 SUBDIRS += $(wildcard GLUT)
65 SUBDIRS += $(wildcard OpenAL)
66 SUBDIRS += $(wildcard ALUT)
67 SUBDIRS += $(wildcard stm)
68 SUBDIRS += $(wildcard xhtml)
69 SUBDIRS += $(wildcard cgi)
70 SUBDIRS += $(wildcard arrows)
71 ifeq "$(GhcLibsWithObjectIO)" "YES"
72 SUBDIRS += $(wildcard ObjectIO)
73 endif
74 SUBDIRS += $(wildcard parallel)
75 endif
76
77 # -----------------------------------------------------------------------------
78
79 empty=
80 space=$(empty) $(empty)
81
82 # -----------------------------------------------------------------------------
83
84 ifneq "$(DOING_BIN_DIST)" "YES"
85
86 CONFIGURE_OPTS =
87 CONFIGURE_STAMP_EXTRAS :=
88
89 ifneq "$(findstring $(space)p$(space), $(space)$(GhcLibWays)$(space))" ""
90 CONFIGURE_OPTS += --enable-library-profiling
91 CONFIGURE_STAMP_EXTRAS := $(CONFIGURE_STAMP_EXTRAS)-profiling
92 endif
93
94 ifeq "$(SplitObjs)" "YES"
95 CONFIGURE_OPTS += --enable-split-objs
96 CONFIGURE_STAMP_EXTRAS := $(CONFIGURE_STAMP_EXTRAS)-splitting
97 endif
98
99 BOOTSTRAP_LIBS = Cabal filepath
100 BOOTSTRAP_STAMPS = $(addprefix stamp/bootstrapping.,$(BOOTSTRAP_LIBS))
101 BOOTSTRAP_INC_1_UP = $(addprefix -i../bootstrapping.,$(BOOTSTRAP_LIBS))
102 BOOTSTRAP_INC_2_UP = $(addprefix -i../../bootstrapping.,$(BOOTSTRAP_LIBS))
103
104 .PHONY: subdirs
105
106 subdirs:
107         @echo $(SUBDIRS)
108
109 .PHONY: boot
110
111 boot: $(BOOTSTRAP_STAMPS) ifBuildable/ifBuildable \
112           $(foreach SUBDIR,$(SUBDIRS),$(SUBDIR)/setup/Setup) \
113           installPackage/installPackage
114
115 # We build the Setup program in a setup subdirectory to stop it trying
116 # to use bits of base and Cabal when we build those packages.
117 # This also makes it slightly easier to clean.
118
119 # We ought to be depending on %/Setup.*hs, but make makes that difficult.
120
121 $(foreach SUBDIR,$(SUBDIRS),$(SUBDIR)/setup/Setup): \
122 %/setup/Setup: $(BOOTSTRAP_STAMPS)
123         -$(RM) -rf $*/setup
124         mkdir $*/setup
125         $(CP) $*/Setup.*hs $*/setup
126         cd $*/setup && $(GHC) -Wall -cpp --make Setup.*hs -o Setup \
127                               $(BOOTSTRAP_INC_2_UP)
128
129 installPackage/installPackage: installPackage.hs $(BOOTSTRAP_STAMPS)
130         -$(RM) -rf installPackage
131         mkdir installPackage
132         $(CP) installPackage.hs installPackage/
133         cd installPackage && $(GHC) -Wall -cpp \
134                                     --make installPackage -o installPackage \
135                                     $(BOOTSTRAP_INC_1_UP)
136
137 ifBuildable/ifBuildable: ifBuildable.hs
138         -$(RM) -rf ifBuildable
139         mkdir ifBuildable
140         $(CP) ifBuildable.hs ifBuildable/
141         cd ifBuildable && $(GHC) -Wall --make ifBuildable -o ifBuildable
142
143 $(BOOTSTRAP_STAMPS): stamp/bootstrapping.%:
144         $(RM) -rf bootstrapping.$*
145         $(CP) -R $* bootstrapping.$*
146         $(FIND) bootstrapping.$* \( -name "*.o" -o -name "*.hi" \) \
147                                  -exec $(RM) -f {} \;
148         touch $@
149
150 .PHONY: all build configure
151
152 all: build
153
154 ifneq "$(NO_HADDOCK_DOCS)" "YES"
155 all: doc
156 endif
157
158 .PHONY: rebuild.library.%
159
160 $(foreach SUBDIR,$(SUBDIRS),rebuild.library.$(SUBDIR)):\
161 rebuild.library.%: clean.library.% build.library.%
162
163 build: $(foreach SUBDIR,$(SUBDIRS),build.library.$(SUBDIR))
164 build: installPackage/installPackage
165
166 configure: $(foreach SUBDIR,$(SUBDIRS), \
167              stamp/configure.library.build$(CONFIGURE_STAMP_EXTRAS).$(SUBDIR))
168
169 .PHONY: build.library.%
170
171 # We should depend on %/%.cabal here (and in other rules), but make
172 # makes that difficult.
173
174 $(foreach SUBDIR,$(SUBDIRS), \
175                   stamp/configure.library.build$(CONFIGURE_STAMP_EXTRAS).$(SUBDIR)): \
176 stamp/configure.library.build$(CONFIGURE_STAMP_EXTRAS).%: %/setup/Setup
177         -$(RM) -f stamp/configure.library.*.$* $*/unbuildable
178         ( cd $* && setup/Setup configure \
179                    $(CONFIGURE_OPTS) \
180                    --prefix='$$topdir' \
181                    --libsubdir='$$compiler/lib/$$pkgid' \
182                    --with-compiler=../../compiler/ghc-inplace$(dot_bat) \
183                    --with-hc-pkg=../../utils/ghc-pkg/ghc-pkg-inplace$(dot_bat) \
184                    --with-hsc2hs=../../utils/hsc2hs/hsc2hs-inplace$(dot_bat) \
185                    --with-ld=$(LD) \
186                    --datasubdir=ghc \
187                    --haddock-args="--use-contents=../index.html \
188                                    --use-index=../doc-index.html" \
189                    $(addprefix --configure-option=,$(CONFIGURE_ARGS)) \
190                    --configure-option=--with-cc=$(CC) ) \
191               && touch $@ || touch $*/unbuildable
192 # We don't touch $@ if configure failed as we would prefer to try
193 # configuring it next time round, rather than assuming it'll still fail.
194 # This is particularly important for corelibs, where failure means the
195 # build dies!
196
197 $(foreach SUBDIR,$(SUBDIRS),build.library.$(SUBDIR)):\
198 build.library.%: stamp/configure.library.build$(CONFIGURE_STAMP_EXTRAS).% \
199                  %/setup/Setup ifBuildable/ifBuildable
200         ifBuildable/ifBuildable $* setup/Setup build \
201                                         $(addprefix --ghc-option=,$(GhcLibHcOpts))
202         ifBuildable/ifBuildable $* setup/Setup register --inplace
203
204 $(foreach SUBDIR,$(SUBDIRS),$(SUBDIR)/CabalMakefile):\
205 %/CabalMakefile: stamp/configure.library.build$(CONFIGURE_STAMP_EXTRAS).% \
206                  %/setup/Setup ifBuildable/ifBuildable
207         $(RM) $*/CabalMakefile
208         ifBuildable/ifBuildable $* setup/Setup makefile -f CabalMakefile \
209                                      $(addprefix --ghc-option=,$(GhcLibHcOpts))
210
211 .PHONY: doc
212
213 DOC_SUBDIRS = $(filter-out haskell98,$(SUBDIRS))
214
215 doc: $(foreach SUBDIR,$(SUBDIRS),doc.library.$(SUBDIR))
216         sh gen_contents_index
217
218 $(foreach SUBDIR,$(SUBDIRS),doc.library.$(SUBDIR)):\
219 doc.library.%: stamp/configure.library.build$(CONFIGURE_STAMP_EXTRAS).% \
220                %/setup/Setup ifBuildable/ifBuildable
221         ifBuildable/ifBuildable $* setup/Setup haddock
222
223 .PHONY: distclean clean clean.library.%
224
225 distclean: clean
226
227 clean: $(foreach SUBDIR,$(SUBDIRS),clean.library.$(SUBDIR))
228         $(RM) -f stamp/bootstrapping.*
229         $(RM) -rf bootstrapping.*
230         $(RM) -rf ifBuildable
231         $(RM) -f libraries.txt index.html doc-index.html
232
233 $(foreach SUBDIR,$(SUBDIRS),clean.library.$(SUBDIR)): \
234 clean.library.%:
235         $(RM) -f stamp/configure.library.*.$* $*/unbuildable
236         -cd $* && setup/Setup clean
237         $(RM) -rf $*/setup
238 endif
239
240 # -----------------------------------------------------------------------------
241
242 .PHONY: install install-docs install.library.%
243
244 ROOT=$(prefix)/share/ghc/doc/html/
245
246 install: $(foreach SUBDIR,$(SUBDIRS),install.library.$(SUBDIR))
247 ifneq "$(NO_HADDOCK_DOCS)" "YES"
248         $(INSTALL_DIR)                                            $(ROOT)
249         $(INSTALL_DATA)   index.html doc-index.html               $(ROOT)
250         $(INSTALL_SCRIPT) gen_contents_index                      $(ROOT)
251         # Hacks:
252         $(INSTALL_DATA)   $(prefix)/share/ghc/doc/html/base/*.css $(ROOT)
253         $(INSTALL_DATA)   $(prefix)/share/ghc/doc/html/base/*.js  $(ROOT)
254         $(INSTALL_DATA)   $(prefix)/share/ghc/doc/html/base/*.gif $(ROOT)
255 endif
256
257 # Cabal doesn't let us ask to install docs only, so do nothing here
258 install-docs:
259         @:
260
261 # Ideally this would depend on a stamp/build.library.%, but if it does
262 # then we can't change the libraries and then just rerun make.
263 # Thus if you install without building then it will just break.
264 $(foreach SUBDIR,$(SUBDIRS),install.library.$(SUBDIR)): \
265 install.library.%: installPackage/installPackage ifBuildable/ifBuildable
266         ifBuildable/ifBuildable $* ../installPackage/installPackage $(prefix) $(bindir)/ghc-pkg
267
268 .PHONY: binary-dist binary-dist.library.%
269
270 BIN_DIST_LIBDIR=$(BIN_DIST_DIR)/libraries
271
272 binary-dist: $(foreach SUBDIR,$(SUBDIRS),binary-dist.library.$(SUBDIR))
273         mkdir                               $(BIN_DIST_LIBDIR)/installPackage
274         cp        installPackage/installPackage $(BIN_DIST_LIBDIR)/installPackage
275         mkdir                               $(BIN_DIST_LIBDIR)/ifBuildable
276         cp        ifBuildable/ifBuildable       $(BIN_DIST_LIBDIR)/ifBuildable
277         cp    Makefile                      $(BIN_DIST_LIBDIR)
278         cp    gen_contents_index            $(BIN_DIST_LIBDIR)
279         cp    index.html                    $(BIN_DIST_LIBDIR)
280         cp    doc-index.html                $(BIN_DIST_LIBDIR)
281         cp -a stamp                         $(BIN_DIST_LIBDIR)
282
283 $(foreach SUBDIR,$(SUBDIRS),binary-dist.library.$(SUBDIR)): \
284 binary-dist.library.%:
285         $(MKDIRHIER) $(BIN_DIST_LIBDIR)/$*
286         ifBuildable/ifBuildable $* cp    $*.cabal      $(BIN_DIST_LIBDIR)/$*
287         ifBuildable/ifBuildable $* cp .setup-config    $(BIN_DIST_LIBDIR)/$*
288         ifBuildable/ifBuildable $* cp -a dist          $(BIN_DIST_LIBDIR)/$*
289         # Euch
290         ifBuildable/ifBuildable $* cp -aL include      $(BIN_DIST_LIBDIR)/$* || :
291         ifBuildable/ifBuildable $* $(FIND) $(BIN_DIST_LIBDIR)/$*/dist \
292              \( -name "*_split" -o -name "autogen" \) | xargs rm -rf
293         ifBuildable/ifBuildable $* $(FIND) $(BIN_DIST_LIBDIR)/$*/dist \
294              \( \( -name "*.o" -o -name "*.p_o" \) -a ! -name "HS*" \) \
295              -exec rm {} \;
296