[project @ 2004-01-28 10:22:27 by simonmar]
[ghc-hetmet.git] / ghc / compiler / Makefile
1 # -----------------------------------------------------------------------------
2 # Main ghc/compiler Makefile
3
4 # Targets:
5 #
6 #       all     builds stage1 compiler
7 #
8 #       boot stage=N   generate build dirs and dependencies for stage N.
9 #                      NB. Must be done before 'make stageN'.
10 #                      NB. Cannot 'make boot stage=2' until stage1 has
11 #                          been built (similarly for stage3).
12 #
13 #       stage1  (or stage=1) builds stage1 compiler
14 #       stage2  (or stage=2) builds stage2 compiler
15 #       stage3  (or stage=3) builds stage3 compiler
16 #
17
18 TOP = ..
19
20 # Use GHC for compiling C bits (NB. must be before boilerplate include)
21 #
22 UseGhcForCc = YES
23
24 include $(TOP)/mk/boilerplate.mk
25
26 #-----------------------------------------------------------------------------
27 # Counting source code lines
28
29 USER_SRCS = $(filter-out $(DERIVED_SRCS),$(SRCS))
30 count :
31         ./count_lines $(USER_SRCS)
32
33 #-----------------------------------------------------------------------------
34 # Building ghc different ways (default is just `normal' sequential)
35
36 WAYS=$(GhcCompilerWays)
37
38 # -----------------------------------------------------------------------------
39 # Bootstrapping
40
41 # The stage1/stage2/stage3 business is quite delicate.  Here's how it works:
42
43 #  - the variable $(stage) holds the current stage number.  To build a 
44 #    particular stage, you say 'make stage=N' where N is 1, 2, or 3.
45 #    N defaults to 1.
46 #
47 #  - for stage N, object files and .hi files are placed inside 
48 #    the directory stageN, in subdirectories as per the sources.
49 #
50 #  - .hi-boot files are *linked* into the stageN tree, because in GHC 5.05+
51 #    the .hi-boot file must reside in the same place as the .hi file.
52 #
53 #  - we use explicit -o and -ohi options to direct the output from C & 
54 #    Haskell compilations.
55 #
56 #  - we generate a different .depend file for each build.  They need to be
57 #    different, because each stage might include different files: stage1
58 #    might not include GHCi, for example.  For each stage, a normal .depend
59 #    file is generated, and then post-processed to add the correct stageN/
60 #    prefix to each object and .hi filename.  The resulting .depend file
61 #    is named .depend-$(stage).  See the end of this Makefile for details.
62 #
63 #  - normal implicit rules don't work any more, because they're of the form
64 #
65 #        %.o : %.hs 
66 #
67 #    whereas we really need 
68 #
69 #        stageN/%.o : %.hs
70 #
71 #    so suffix.mk now defines the appropriate suffix rules when
72 #    $(odir) is set to a non-empty value.  Here we set $(odir) to
73 #    stage1, stage2, or stage3.
74 #
75 #  There are other plausible designs that might work, but each has different
76 #  problems:
77 #
78 #  - using -odir and -hidir: GHC <= 4.08 doesn't support -hidir, and
79 #    anyway -odir puts all the objects in one directory (strips off the
80 #    subdirectory part), which eventually forces us to use VPATH to find
81 #    the sources.  I have a really bad feeling about VPATH.
82 #
83 #  - invoke make in the stageN subdirectory.  This probably requires VPATH
84 #    too.
85 #
86 #  - create a link tree.  The problem with requiring link trees is that 
87 #    Windows doesn't support symbolic links.
88
89 boot ::
90         $(MKDIRHIER) stage$(stage)
91         for i in $(ALL_DIRS); do \
92             $(MKDIRHIER) stage$(stage)/$$i; \
93         done
94 # On Windows, we can't use symbolic links for the -hi-boot files
95 # because GHC itself is a Mingw program and does not understand
96 # symbolic links.  So we have to copy the files instead of link them.
97 # That means that if you modify a .hi-boot file in Windows, you
98 # have to to say 'make boot' again.
99 #
100 # PS: 'ln -s foo baz' takes 'foo' relative to the path to 'baz'
101 #     whereas 'cp foo baz' treats the two paths independently.
102 #     Hence the "../.." in the ln command line
103 ifeq "$(HOSTPLATFORM)" "i386-unknown-mingw32"
104         for i in */*hi-boot*; do \
105             cp -u -f $$i stage$(stage)/$$i; \
106         done
107 else
108         for i in */*hi-boot*; do \
109             $(LN_S) -f ../../$$i stage$(stage)/$$i || true ; \
110         done
111 endif
112
113 ifeq "$(stage)" ""
114 stage=1
115 endif
116
117 ifeq "$(stage)" "1"
118 HC=$(GHC)
119 endif
120
121 ifeq "$(stage)" "2"
122 HC=$(GHC_STAGE1)
123 endif
124
125 ifeq "$(stage)" "3"
126 HC=$(GHC_STAGE2)
127 endif
128
129 stage1 ::
130         $(MAKE) stage=1
131
132 stage2 ::
133         $(MAKE) stage=2
134
135 stage3 ::
136         $(MAKE) stage=3
137
138 odir=stage$(stage)
139
140 SRC_HC_OPTS += $(patsubst %, -i$(odir)/%, $(ALL_DIRS))
141
142 HS_OBJS = $(patsubst %, $(odir)/%, $(addsuffix .$(way_)o,$(basename $(HS_SRCS))))
143 C_OBJS = $(patsubst %, $(odir)/%, $(addsuffix .$(way_)o,$(basename $(C_SRCS))))
144
145 CLEAN_FILES += $(odir)/*/*.hi
146
147 ifeq "$(stage)" "1"
148 mostlyclean clean distclean maintainer-clean ::
149         $(MAKE) $@ stage=2
150         $(MAKE) $@ stage=3
151 endif
152
153 # -----------------------------------------------------------------------------
154 #               Set HS_PROG
155
156 # Note: there have been reports of people running up against the ARG_MAX limit
157 # when linking ghc with all its constituent object files. The likely source of 
158 # the problem is that the environment is a bit too big, so a workaround could
159 # be to do `env PATH=$(PATH) make ghc' to minimise the environment. (or the
160 # equivalent of `env' if it doesn't exist locally).
161 #
162 ifneq "$(BuildPackageGHC)" "YES"
163 ifneq "$(way)" "dll"
164 ifneq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
165 HS_PROG=$(odir)/ghc$(_way)-$(ProjectVersion)
166 else
167 HS_PROG=$(odir)/ghc$(_way)
168 endif
169 else
170 HS_PROG=$(odir)/ghc-$(ProjectVersion)
171 endif
172 endif
173
174 # -----------------------------------------------------------------------------
175 # Create compiler configuration
176 #
177 # The 'echo' commands simply spit the values of various make variables
178 # into Config.hs, whence they can be compiled and used by GHC itself
179
180 CONFIG_HS       = main/Config.hs
181 boot :: $(CONFIG_HS)
182
183 $(CONFIG_HS) : $(FPTOOLS_TOP)/mk/config.mk Makefile
184         @$(RM) -f $(CONFIG_HS)
185         @echo "Creating $(CONFIG_HS) ... "
186         @echo "module Config where" >>$(CONFIG_HS)
187         @echo "cProjectName          = \"$(ProjectName)\"" >> $(CONFIG_HS)
188         @echo "cProjectVersion       = \"$(ProjectVersion)\"" >> $(CONFIG_HS)
189         @echo "cProjectVersionInt    = \"$(ProjectVersionInt)\"" >> $(CONFIG_HS)
190         @echo "cProjectPatchLevel    = \"$(ProjectPatchLevel)\"" >> $(CONFIG_HS)
191         @echo "cBooterVersion        = \"$(GhcVersion)\"" >> $(CONFIG_HS)
192         @echo "cHscIfaceFileVersion  = \"$(HscIfaceFileVersion)\"" >> $(CONFIG_HS)
193         @echo "cHOSTPLATFORM         = \"$(HOSTPLATFORM)\"" >> $(CONFIG_HS)
194         @echo "cTARGETPLATFORM       = \"$(TARGETPLATFORM)\"" >> $(CONFIG_HS)
195         @echo "cGhcWithNativeCodeGen = \"$(GhcWithNativeCodeGen)\"" >> $(CONFIG_HS)
196         @echo "cGhcUnregisterised    = \"$(GhcUnregisterised)\"" >> $(CONFIG_HS)
197         @echo "cLeadingUnderscore    = \"$(LeadingUnderscore)\"" >> $(CONFIG_HS)
198         @echo "cRAWCPP_FLAGS         = \"$(RAWCPP_FLAGS)\"" >> $(CONFIG_HS)
199         @echo "cGCC                  = \"$(WhatGccIsCalled)\"" >> $(CONFIG_HS)
200         @echo "cMKDLL                = \"$(BLD_DLL)\"" >> $(CONFIG_HS)
201         @echo "cPROJECT_DIR          = \"$(PROJECT_DIR)\"" >> $(CONFIG_HS)
202         @echo "cGHC_DRIVER_DIR_REL   = \"$(GHC_DRIVER_DIR_REL)\"" >> $(CONFIG_HS)
203         @echo "cGHC_TOUCHY_PGM       = \"$(GHC_TOUCHY_PGM)\"" >> $(CONFIG_HS)
204         @echo "cGHC_TOUCHY_DIR_REL   = \"$(GHC_TOUCHY_DIR_REL)\"" >> $(CONFIG_HS)
205         @echo "cGHC_UNLIT_PGM        = \"$(GHC_UNLIT_PGM)\"" >> $(CONFIG_HS)
206         @echo "cGHC_UNLIT_DIR_REL    = \"$(GHC_UNLIT_DIR_REL)\"" >> $(CONFIG_HS)
207         @echo "cGHC_MANGLER_PGM      = \"$(GHC_MANGLER_PGM)\"" >> $(CONFIG_HS)
208         @echo "cGHC_MANGLER_DIR_REL  = \"$(GHC_MANGLER_DIR_REL)\"" >> $(CONFIG_HS)
209         @echo "cGHC_SPLIT_PGM        = \"$(GHC_SPLIT_PGM)\"" >> $(CONFIG_HS)
210         @echo "cGHC_SPLIT_DIR_REL    = \"$(GHC_SPLIT_DIR_REL)\"" >> $(CONFIG_HS)
211         @echo "cGHC_SYSMAN_PGM       = \"$(GHC_SYSMAN)\"" >> $(CONFIG_HS)
212         @echo "cGHC_SYSMAN_DIR_REL   = \"$(GHC_SYSMAN_DIR)\"" >> $(CONFIG_HS)
213         @echo "cGHC_CP               = \"$(GHC_CP)\"" >> $(CONFIG_HS)
214         @echo "cGHC_PERL             = \"$(GHC_PERL)\"" >> $(CONFIG_HS)
215 ifeq ($(GhcWithIlx),YES)
216         @echo "cILX2IL               = \"$(ILX2IL)\"" >> $(CONFIG_HS)
217         @echo "cILASM                = \"$(ILASM)\"" >> $(CONFIG_HS)
218 endif
219         @echo "cEnableWin32DLLs      = \"$(EnableWin32DLLs)\"" >> $(CONFIG_HS)
220         @echo "cCONTEXT_DIFF         = \"$(CONTEXT_DIFF)\"" >> $(CONFIG_HS)
221         @echo "cUSER_WAY_NAMES       = \"$(USER_WAY_NAMES)\"" >> $(CONFIG_HS)
222         @echo "cUSER_WAY_OPTS        = \"$(USER_WAY_OPTS)\"" >> $(CONFIG_HS)
223         @echo "cDEFAULT_TMPDIR       = \"$(DEFAULT_TMPDIR)\"" >> $(CONFIG_HS)
224         @echo done.
225
226 CLEAN_FILES += $(CONFIG_HS)
227
228 # -----------------------------------------------------------------------------
229 # Set SRCS etc.
230 #
231 # First figure out ALL_DIRS, the source sub-directories
232
233 ALL_DIRS = \
234   utils basicTypes types hsSyn prelude rename typecheck deSugar coreSyn \
235   specialise simplCore stranal stgSyn simplStg codeGen absCSyn main \
236   profiling parser cprAnalysis compMan ndpFlatten cbits iface
237
238 # Make sure we include Config.hs even if it doesn't exist yet...
239 ALL_SRCS += $(CONFIG_HS)
240
241 # HsGeneric.hs is not used just now
242 EXCLUDED_SRCS += hsSyn/HsGeneric.hs
243
244 ifeq ($(GhcWithNativeCodeGen),YES)
245 ALL_DIRS += nativeGen
246 else
247 SRC_HC_OPTS += -DOMIT_NATIVE_CODEGEN
248 endif
249
250 ifeq ($(GhcWithIlx),YES)
251 ALL_DIRS += ilxGen
252 SRC_HC_OPTS += -DILX
253 endif
254
255 ifeq ($(GhcWithJavaGen),YES)
256 ALL_DIRS += javaGen
257 SRC_HC_OPTS += -DJAVA
258 endif
259
260 ifeq "$(BootingFromHc)" "YES"
261 # HC files are always from a self-booted compiler
262 bootstrapped = YES
263 compiling_with_4xx=NO
264 else
265 ifneq "$(findstring $(stage), 2 3)" ""
266 bootstrapped = YES
267 compiling_with_4xx = NO
268 else
269 bootstrapped = $(shell if (test $(GhcCanonVersion) -ge $(ProjectVersionInt) -a $(GhcPatchLevel) -ge $(ProjectPatchLevel)); then echo YES; else echo NO; fi)
270 compiling_with_4xx = $(shell if (test $(GhcCanonVersion) -lt 500); then echo YES; else echo NO; fi)
271 endif
272 endif
273
274 # Only include GHCi if we're bootstrapping with at least version 411
275 ifeq "$(GhcWithInterpreter) $(bootstrapped)" "YES YES"
276 # Yes, include the interpreter, readline, and Template Haskell extensions
277 SRC_HC_OPTS += -DGHCI -package template-haskell
278 ifneq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
279 SRC_HC_OPTS += -package unix
280 ifeq "$(GhcLibsWithReadline)" "YES"
281 SRC_HC_OPTS += -package readline 
282 endif
283 endif
284 ALL_DIRS += ghci
285 else
286 # No interpreter, so exclude Template Haskell modules
287 EXCLUDED_SRCS += deSugar/DsMeta.hs typecheck/TcSplice.lhs hsSyn/Convert.lhs
288 endif 
289
290 # -----------------------------------------------
291 # mkdependC stuff
292 #
293 # Big Fudge to get around inherent problem that Makefile setup
294 # has got with 'mkdependC'.
295
296 SRC_MKDEPENDC_OPTS += -D__GLASGOW_HASKELL__=$(ProjectVersionInt)
297
298 # XXX not really correct, hschooks.c actually gets include files like
299 # RtsFlags.c from the installed GHC, but we can't tell mkdependC about that.
300 SRC_MKDEPENDC_OPTS += -I$(GHC_INCLUDE_DIR)
301
302 # -----------------------------------------------------------------------------
303 #               Haskell compilations
304
305 SRC_HC_OPTS += \
306   -cpp -fglasgow-exts -Rghc-timing \
307   -I. -IcodeGen -InativeGen -Iparser
308
309 # Omitted:      -I$(GHC_INCLUDE_DIR)
310 # We should have -I$(GHC_INCLUDE_DIR) in SRC_HC_OPTS, 
311 # to avoid the use of an explicit path in GHC source files
312 #       (include "../includes/config.h"
313 # But alas GHC 4.08 (and others for all I know) uses this very
314 # same include path when compiling the .hc files it generates.
315 # Disaster!  Then the hc file sees the GHC 5.02 (or whatever)
316 # include files.   For the moment we've reverted to using
317 # an explicit path in the .hs sources
318 #
319 # For the benefit of <5.00 compilers, do include GHC_INCLUDE_DIR
320 # when generating dependencies. (=> it gets passed onto mkdependHS,
321 # which needs it).
322 SRC_MKDEPENDHS_OPTS += -I$(GHC_INCLUDE_DIR)
323
324 # When bootstrapped, we don't make use of *any* packages
325 # (except possibly readline if GHCi is enabled, see above)
326 ifneq "$(bootstrapped)" "YES"
327 ifneq "$(mingw32_HOST_OS)" "1"
328 SRC_HC_OPTS += -package concurrent -package posix -package util
329 else
330 SRC_HC_OPTS += -package concurrent -package util
331 endif
332 endif
333
334 SRC_CC_OPTS += -Iparser -I. -O
335 SRC_HC_OPTS += -recomp $(GhcHcOpts) $(GhcStage$(stage)HcOpts)
336 SRC_HC_OPTS += -H16M
337
338 ifeq "$(BootingFromHc)" "YES"
339 SRC_CC_OPTS += -D__GLASGOW_HASKELL__=$(ProjectVersionInt)
340 endif
341
342 #       Special flags for particular modules
343 #       The standard suffix rule for compiling a Haskell file
344 #       adds these flags to the command line
345
346 # There used to be a -no-recomp flag on PrimOp, but why?
347 # It's an expensive module to recompile!
348 prelude/PrimOp_HC_OPTS          = -H80m
349
350 # because the NCG can't handle the 64-bit math in here
351 prelude/PrelRules_HC_OPTS       = -fvia-C
352
353 main/ParsePkgConf_HC_OPTS       += -fno-warn-incomplete-patterns
354 # Use -fvia-C since the NCG can't handle the narrow16Int# (and intToInt16#?)
355 # primops on all platforms.
356 parser/Parser_HC_OPTS           += -fno-warn-incomplete-patterns -fvia-C
357
358 # Careful optimisation of the parser: we don't want to throw everything
359 # at it, because that takes too long and doesn't buy much, but we do want
360 # to inline certain key external functions, so we instruct GHC not to
361 # throw away inlinings as it would normally do in -Onot mode:
362 parser/Parser_HC_OPTS           += -Onot -fno-ignore-interface-pragmas
363
364 ifeq "$(HOSTPLATFORM)" "hppa1.1-hp-hpux9"
365 rename/RnMonad_HC_OPTS          =  -O2 -O2-for-C
366 endif
367
368 utils/Digraph_HC_OPTS           = -fglasgow-exts 
369
370 basicTypes/SrcLoc_HC_OPTS       = -funbox-strict-fields
371
372 ifeq "$(bootstrapped)" "YES"
373 utils/Binary_HC_OPTS            = -funbox-strict-fields
374 endif
375
376 # 4.08.2's NCG can't cope with Binary
377 ifeq "$(compiling_with_4xx)" "YES"
378 utils/Binary_HC_OPTS            += -fvia-C
379 endif
380
381 # ByteCodeItbls uses primops that the NCG doesn't support yet.
382 ghci/ByteCodeItbls_HC_OPTS      += -fvia-C
383 ghci/ByteCodeLink_HC_OPTS       += -fvia-C -monly-3-regs
384
385 # BinIface and Binary take ages to both compile and run if you don's use -O
386 main/BinIface_HC_OPTS           += -O
387 utils/Binary_HC_OPTS            += -O
388 utils/FastMutInt_HC_OPTS        += -O
389
390
391 # CSE interacts badly with top-level IORefs (reportedly in DriverState and
392 # DriverMkDepend), causing some of them to be commoned up.  We have a fix for
393 # this in 5.00+, but earlier versions of the compiler will need CSE turned off.
394 # To be on the safe side, we disable CSE in *all* modules with top-level IORefs.
395 compMan/CompManager_HC_OPTS     = -fno-cse
396 ghci/InteractiveUI_HC_OPTS      = -fno-cse
397 main/CmdLineOpts_HC_OPTS        = -fno-cse
398 main/DriverFlags_HC_OPTS        = -fno-cse
399 main/DriverMkDepend_HC_OPTS     = -fno-cse
400 main/DriverPipeline_HC_OPTS     = -fno-cse
401 main/DriverState_HC_OPTS        = -fno-cse
402 main/DriverUtil_HC_OPTS         = -fno-cse
403 main/Finder_HC_OPTS             = -fno-cse
404 main/SysTools_HC_OPTS           = -fno-cse
405
406 # The #include is vital for the via-C route, else the C
407 # compiler doesn't realise that the stcall foreign imports are indeed
408 # stdcall, and doesn't generate the Foo@8 name for them
409 ifeq "$(HOSTPLATFORM)" "i386-unknown-mingw32"
410 main/SysTools_HC_OPTS           += '-\#include <windows.h>' '-\#include <process.h>'
411 endif
412
413 # Required due to use of Concurrent.myThreadId
414 utils/Panic_HC_OPTS += -fvia-C
415
416 parser/Lexer_HC_OPTS += -funbox-strict-fields
417
418 # ghc_strlen percolates through so many modules that it is easier to get its
419 # prototype via a global option instead of a myriad of per-file OPTIONS
420 SRC_HC_OPTS += '-\#include "hschooks.h"'
421
422 # ----------------------------------------------------------------------------
423 #               Generate supporting stuff for prelude/PrimOp.lhs 
424 #               from prelude/primops.txt
425
426 GENPOC=$(TOP)/utils/genprimopcode/genprimopcode
427
428 PRIMOP_BITS=primop-data-decl.hs-incl \
429             primop-tag.hs-incl  \
430             primop-list.hs-incl  \
431             primop-has-side-effects.hs-incl  \
432             primop-out-of-line.hs-incl  \
433             primop-commutable.hs-incl  \
434             primop-needs-wrapper.hs-incl  \
435             primop-can-fail.hs-incl  \
436             primop-strictness.hs-incl  \
437             primop-primop-info.hs-incl
438
439 CLEAN_FILES += prelude/primops.txt
440 CLEAN_FILES += $(PRIMOP_BITS)
441
442 SRC_CPP_OPTS += -I$(GHC_INCLUDE_DIR)
443 SRC_CPP_OPTS += ${GhcCppOpts}
444
445 ifneq "$(BootingFromHc)" "YES"
446 prelude/PrimOp.lhs $(odir)/prelude/PrimOp.o: $(PRIMOP_BITS)
447 endif
448
449 ifneq "$(BootingFromHc)" "YES"
450 depend :: $(PRIMOP_BITS)
451 endif
452
453 primop-data-decl.hs-incl: prelude/primops.txt
454         $(GENPOC) --data-decl          < $< > $@
455 primop-tag.hs-incl: prelude/primops.txt
456         $(GENPOC) --primop-tag         < $< > $@
457 primop-list.hs-incl: prelude/primops.txt
458         $(GENPOC) --primop-list        < $< > $@
459 primop-has-side-effects.hs-incl: prelude/primops.txt
460         $(GENPOC) --has-side-effects   < $< > $@
461 primop-out-of-line.hs-incl: prelude/primops.txt
462         $(GENPOC) --out-of-line        < $< > $@
463 primop-commutable.hs-incl: prelude/primops.txt
464         $(GENPOC) --commutable         < $< > $@
465 primop-needs-wrapper.hs-incl: prelude/primops.txt
466         $(GENPOC) --needs-wrapper      < $< > $@
467 primop-can-fail.hs-incl: prelude/primops.txt
468         $(GENPOC) --can-fail           < $< > $@
469 primop-strictness.hs-incl: prelude/primops.txt
470         $(GENPOC) --strictness         < $< > $@
471 primop-primop-info.hs-incl: prelude/primops.txt
472         $(GENPOC) --primop-primop-info < $< > $@
473
474 # Usages aren't used any more; but the generator 
475 # can still generate them if we want them back
476 primop-usage.hs-incl: prelude/primops.txt
477         $(GENPOC) --usage              < $< > $@
478
479
480 #-----------------------------------------------------------------------------
481 #               Linking
482
483 SRC_LD_OPTS += -no-link-chk 
484
485 # -----------------------------------------------------------------------------
486 # create ghc-inplace, a convenient way to run ghc from the build tree...
487
488 all :: $(odir)/ghc-inplace ghc-inplace
489
490 $(odir)/ghc-inplace : $(HS_PROG)
491         @$(RM) $@
492         echo '#!/bin/sh' >>$@
493         echo exec $(FPTOOLS_TOP_ABS)/ghc/compiler/$(HS_PROG) '-B$(subst \,\\,$(FPTOOLS_TOP_ABS_PLATFORM))' '"$$@"' >>$@
494         chmod 755 $@
495
496 ghc-inplace : stage1/ghc-inplace
497         $(LN_S) -f $< $@
498
499 CLEAN_FILES += $(odir)/ghc-inplace ghc-inplace
500
501 #-----------------------------------------------------------------------------
502 #               install
503
504 # We don't want ghc treated as an ordinary executable,
505 # but put it together with the libraries.
506 # Also don't want any interface files installed
507
508 DESTDIR = $(INSTALL_LIBRARY_DIR_GHC)
509
510 ifneq "$(HOSTPLATFORM)" "i386-unknown-mingw32"
511 INSTALL_LIBEXECS += $(HS_PROG)
512 else
513 INSTALL_PROGS += $(HS_PROG)
514 endif
515
516 # ----------------------------------------------------------------------------
517 # profiling.
518
519 # rename/RnBinds_HC_OPTS += -auto-all
520 # rename/RnEnv_HC_OPTS += -auto-all
521 # rename/RnExpr_HC_OPTS += -auto-all
522 # rename/RnHiFiles_HC_OPTS += -auto-all
523 # rename/RnHsSyn_HC_OPTS += -auto-all
524 # rename/Rename_HC_OPTS += -auto-all
525 # rename/RnIfaces_HC_OPTS += -auto-all
526 # rename/RnNames_HC_OPTS += -auto-all
527 # rename/RnSource_HC_OPTS += -auto-all
528 # rename/RnTypes_HC_OPTS += -auto-all
529
530 # typecheck/Inst_HC_OPTS += -auto-all
531 # typecheck/TcBinds_HC_OPTS += -auto-all
532 # typecheck/TcClassDcl_HC_OPTS += -auto-all
533 # typecheck/TcDefaults_HC_OPTS += -auto-all
534 # typecheck/TcDeriv_HC_OPTS += -auto-all
535 # typecheck/TcEnv_HC_OPTS += -auto-all
536 # typecheck/TcExpr_HC_OPTS += -auto-all
537 # typecheck/TcForeign_HC_OPTS += -auto-all
538 # typecheck/TcGenDeriv_HC_OPTS += -auto-all
539 # typecheck/TcHsSyn_HC_OPTS += -auto-all
540 # typecheck/TcIfaceSig_HC_OPTS += -auto-all
541 # typecheck/TcInstDcls_HC_OPTS += -auto-all
542 # typecheck/TcMatches_HC_OPTS += -auto-all
543 # typecheck/TcMonoType_HC_OPTS += -auto-all
544 # typecheck/TcMType_HC_OPTS += -auto-all
545 # typecheck/TcPat_HC_OPTS += -auto-all
546 # typecheck/TcRnDriver_HC_OPTS += -auto-all
547 # #typecheck/TcRnMonad_HC_OPTS += -auto-all
548 # #typecheck/TcRnTypes_HC_OPTS += -auto-all
549 # typecheck/TcRules_HC_OPTS += -auto-all
550 # typecheck/TcSimplify_HC_OPTS += -auto-all
551 # typecheck/TcSplice_HC_OPTS += -auto-all
552 # typecheck/TcTyClsDecls_HC_OPTS += -auto-all
553 # typecheck/TcTyDecls_HC_OPTS += -auto-all
554 # typecheck/TcType_HC_OPTS += -auto-all
555 # typecheck/TcUnify_HC_OPTS += -auto-all
556
557 # absCSyn/PprAbsC_HC_OPTS += -auto-all
558
559 coreSyn/CorePrep_HC_OPTS += -auto-all
560
561 #-----------------------------------------------------------------------------
562 # Building GHC package
563
564 ifeq "$(BuildPackageGHC)" "YES"
565
566 PACKAGE = ghc
567 STANDALONE_PACKAGE = YES
568 PACKAGE_DEPS = base haskell98
569
570 endif
571
572 #-----------------------------------------------------------------------------
573 #               clean
574
575 MAINTAINER_CLEAN_FILES += parser/Parser.info main/ParsePkgConf.info
576
577 #-----------------------------------------------------------------------------
578 #               Include target-rule boilerplate
579
580 # Don't use the default MKDEPENDHS stuff... we'll do our own, below
581 MKDEPENDHS_SRCS =
582 MKDEPENDC_SRCS =
583
584 # Make doesn't work this out for itself, it seems
585 parser/Parser.y : parser/Parser.y.pp
586 EXTRA_SRCS += parser/Parser.y
587
588 include $(TOP)/mk/target.mk
589
590 # -----------------------------------------------------------------------------
591 # Dependencies
592
593 MKDEPENDHS_HC_OPTS = $(patsubst -i$(odir)/%, -i%, $(HC_OPTS))
594
595 MKDEPENDHS=$(HC)
596
597 # Must do this *after* including target.mk, because $(HS_SRCS) isn't set yet.
598 depend :: $(HS_SRCS) $(C_SRCS)
599         touch .depend-BASE
600 ifneq "$(BootingFromHc)" "YES"
601         $(MKDEPENDHS) -M -optdep-f -optdep.depend-BASE $(foreach way,$(WAYS),-optdep-s -optdep$(way)) $(foreach obj,$(MKDEPENDHS_OBJ_SUFFICES),-osuf $(obj)) $(MKDEPENDHS_OPTS) $(filter-out -split-objs, $(MKDEPENDHS_HC_OPTS)) $(HS_SRCS)
602 endif
603         $(MKDEPENDC) -f .depend-BASE $(MKDEPENDC_OPTS) $(foreach way,$(WAYS),-s $(way)) -- $(CC_OPTS) -- $(C_SRCS) 
604         $(PERL) -pe 'binmode(stdin); binmode(stdout); s@^(\S*\.o)@stage$(stage)/$$1@g; s@(\S*\.hi)@stage$(stage)/$$1@g' <.depend-BASE >.depend-$(stage)
605 # The binmode stuff tells perl not to add stupid ^M's to the output
606
607 -include .depend-$(stage)