Use := rather than = when assigning make variables to avoid cycles
[ghc-hetmet.git] / mk / config.mk.in
1 #                                                                -*-makefile-*-
2 # @configure_input@
3 #
4 ################################################################################
5 #
6 # config.mk.in
7 #
8 # This file supplies defaults for many tweakable build configuration
9 # options.  Some of the defaults are filled in by the autoconf-generated
10 # configure script.
11 #
12 # DO NOT EDIT THIS FILE!
13 #
14 #       - config.mk is auto-generated from config.mk.in by configure.
15 #         This may be triggered automatically by the build system (say
16 #         if config.mk.in has changed more recently than config.mk),
17 #         so if you edit config.mk your changes will be spammed.
18 #
19 #       - Settings in this file may be overriden by giving replacement
20 #         definitions in build.mk.  See build.mk.sample for a good
21 #         starting point for a build.mk file.
22 #
23 #         If you don't have a build.mk file then you get defaults for everything.
24 #         The defaults should provide a reasonable vanilla build.
25 #
26 # This is one of only two files that configure generates (the other is config.h)
27 #
28
29 ifneq "$(findstring 3.7, $(MAKE_VERSION))" ""
30 ifeq "$(findstring 3.79.1, $(MAKE_VERSION))" ""
31 $(error GNU make version 3.79.1 or later is required.)
32 endif
33 endif
34
35 ################################################################################
36 #
37 # GHC Version
38 #
39
40 # ProjectVersion    is treated as a *string*
41 # ProjectVersionInt is treated as an *integer* (for cpp defines)
42
43 # Versioning scheme: A.B.C
44 #         A: major version, decimal, any number of digits
45 #         B: minor version, decimal, any number of digits
46 #         C: patchlevel, one digit, omitted if zero.
47 #
48 # ProjectVersionInt does *not* contain the patchlevel (rationale: this
49 # figure is used for conditional compilations, and library interfaces
50 # etc. are not supposed to change between patchlevels).
51 #
52 # The ProjectVersionInt is included in interface files, and GHC
53 # checks that it's reading interface generated by the same ProjectVersion
54 # as itself. It does this even though interface file syntax may not 
55 # change between versions.  Rationale: calling conventions or other 
56 # random .o-file stuff might change even if the .hi syntax doesn't
57
58 ProjectName       = @ProjectName@
59 ProjectTags       =
60 ProjectVersion    = @ProjectVersion@$(ProjectTags)
61 ProjectVersionInt = @ProjectVersionInt@
62 ProjectPatchLevel = @ProjectPatchLevel@
63
64 ################################################################################
65 #
66 #               Platform variables
67 #
68 ################################################################################
69
70 # A "platform" is the GNU cpu-type/manufacturer/operating-system target machine
71 # specifier.  E.g. sparc-sun-solaris2
72 #
73 # Build  platform: the platform on which we are doing this build
74 # Host   platform: the platform on which these binaries will run
75 # Target platform: the platform for which this compiler will generate code
76 #
77 # We don't support build & host being different, because the build
78 # process creates binaries that are run during the build, and also
79 # installed.
80 #
81 # If host & target are different, then we are building a compiler
82 # which will generate intermediate .hc files to port to the target
83 # architecture for bootstrapping.  The libraries and stage 2 compiler
84 # will be built as HC files for the target system, and likely won't
85 # build on this host platform.
86 #
87 # An important invariant is that for any piece of source code, the
88 # platform on which the code is going to run is the HOST platform,
89 # and the platform on which we are building is the BUILD platform.
90 # Additionally for the compiler, the platform this compiler will
91 # generate code for is the TARGET.  TARGET is not meaningful outside
92 # the compiler sources.
93 #
94 # Guidelines for when to use HOST vs. TARGET:
95 #
96 #  - In the build system (Makefile, foo.mk), normally we should test
97 #    $(HOSTPLATFORM).  There are some cases (eg. installation), where
98 #    we expect $(HOSTPLATFORM)==$(TARGETPLATFORM), so in those cases it
99 #    doesn't matter which is used.
100 #
101 #  - In the compiler itself, we should test HOST or TARGET depending
102 #    on whether the conditional relates to the code being generated, or
103 #    the platform on which the compiler is running.  See the section
104 #    on "Coding Style" in the commentary for more details.
105 #
106 #  - In all other code, we should be testing HOST only.
107 #
108 # NOTE: cross-compiling is not well supported by the build system.
109 # You have to do a lot of work by hand to cross compile: see the
110 # section on "Porting GHC" in the Building Guide.
111
112 HOSTPLATFORM                    = @HostPlatform@
113 TARGETPLATFORM                  = @TargetPlatform@
114 BUILDPLATFORM                   = @BuildPlatform@
115
116 # Hack alert:
117 # in one or two places, we need to get at the OS version (major and
118 # perhaps even minor), HostOS_Full is the OS name reported by
119 # AC_CANONICAL_SYSTEM.
120 #
121 HostPlatform_CPP                = @HostPlatform_CPP@
122 HostArch_CPP                    = @HostArch_CPP@
123 HostOS_CPP                      = @HostOS_CPP@
124 HostOS_Full                     = @HostOS_Full@
125 HostVendor_CPP                  = @HostVendor_CPP@
126
127 TargetPlatform_CPP              = @TargetPlatform_CPP@
128 TargetArch_CPP                  = @TargetArch_CPP@
129 TargetOS_CPP                    = @TargetOS_CPP@
130 TargetVendor_CPP                = @TargetVendor_CPP@
131
132 BuildPlatform_CPP               = @BuildPlatform_CPP@
133 BuildArch_CPP                   = @BuildArch_CPP@
134 BuildOS_CPP                     = @BuildOS_CPP@
135 BuildVendor_CPP                 = @BuildVendor_CPP@
136
137 @HostPlatform_CPP@_HOST           = 1
138 @TargetPlatform_CPP@_TARGET       = 1
139 @BuildPlatform_CPP@_BUILD         = 1
140
141 @HostArch_CPP@_HOST_ARCH          = 1
142 @TargetArch_CPP@_TARGET_ARCH      = 1
143 @BuildArch_CPP@_BUILD_ARCH        = 1
144
145 @HostOS_CPP@_HOST_OS              = 1
146 @TargetOS_CPP@_TARGET_OS          = 1
147 @BuildOS_CPP@_BUILD_OS            = 1
148
149 @HostVendor_CPP@_HOST_VENDOR      = 1
150 @TargetVendor_CPP@_TARGET_VENDOR  = 1
151 @BuildVendor_CPP@_BUILD_VENDOR    = 1
152
153 ################################################################################
154 #
155 #               Global configuration options
156 #
157 ################################################################################
158
159 # Leading underscores on symbol names in object files
160 # Valid options: YES/NO
161 #
162 LeadingUnderscore=@LeadingUnderscore@
163
164 # Pin a suffix on executables? If so, what (Windows only).
165 exeext=@exeext@
166 soext=@soext@
167
168 # Windows=YES if on a Windows platform
169 ifneq "$(findstring $(HostOS_CPP), mingw32 cygwin32)" ""
170 Windows=YES
171 else
172 Windows=NO
173 endif
174
175 # BootingFromHc - build GHC and the libraries from .hc files?
176 BootingFromHc = @BootingFromHc@
177
178 # BootingFromUnregisterisedHc - treat .hc files as containing unregisterised
179 # rather than registerised code, i.e., disable the mangler?
180 BootingFromUnregisterisedHc = @BootingFromUnregisterisedHc@
181
182 #
183 # Which ways should DocBook XML documents be built?
184 # options are: dvi ps pdf html chm HxS
185 #
186 XMLDocWays=
187
188 ################################################################################
189 #
190 # Variables that control how the compiler itself is built
191 #
192 ################################################################################
193
194 # The compiler used to build GHC is $(GHC).  To change the actual compiler
195 # used, re-configure with --with-ghc=<path-to-ghc>.
196
197 # Extra ways in which to build the compiler (for example, you might want to
198 # build a profiled compiler so you can see where it spends its time)
199 GhcCompilerWays=
200
201 # Extra option flags to pass to the compiler that compiles the compiler
202 # (Ones that are essential are wired into compiler/Makefile)
203 # Typical options to use here:
204 #
205 #       -DDEBUG         include debugging code and assertions (will make the
206 #                       compiler slower and produce debugging output, but useful
207 #                       for development)
208 #
209 #       -dcore-lint     check the types after every pass of the compiler;
210 #                       a pretty strong internal check of the compiler being
211 #                       used to compile GHC.  Useful when bootstrapping.
212 GhcHcOpts=-Rghc-timing
213
214 # Extra options added to specific stages of the compiler bootstrap.
215 # These are placed later on the command line, and may therefore
216 # override options from $(GhcHcOpts).
217 GhcStage1HcOpts=
218 GhcStage2HcOpts=
219 GhcStage3HcOpts=
220
221 GhcProfiled=NO
222 GhcDebugged=NO
223
224 # Build a compiler that will build *unregisterised* libraries and
225 # binaries by default.  Unregisterised code is supposed to compile and
226 # run without any support for architecture-specific assembly mangling,
227 # register assignment or tail-calls, and is therefore a good way to get
228 # started when porting GHC to new architectures.
229 #
230 # If this is set to NO, you can still use the unregisterised way
231 # (way 'u') to get unregisterised code, but the default way will be
232 # registerised.
233 #
234 # NOTE: the stage1 compiler will be a registerised binary (assuming
235 # the compiler you build with is generating registerised binaries), but
236 # the stage2 compiler will be an unregisterised binary.
237 #
238 ifneq "$(findstring $(HostArch_CPP), alpha hppa)" ""
239 GhcUnregisterised=YES
240 else
241 GhcUnregisterised=NO
242 endif
243
244 # Build a compiler with a native code generator backend
245 # (as well as a C backend)
246 #
247 # Target platforms supported:
248 #   i386, powerpc
249 #   sparc has bitrotted
250 #   AIX is not supported 
251 ArchSupportsNCG=$(strip $(patsubst $(HostArch_CPP), YES, $(findstring $(HostArch_CPP), i386 x86_64 powerpc)))
252 OsSupportsNCG=$(strip $(patsubst $(HostOS_CPP), YES, $(patsubst aix,,$(HostOS_CPP))))
253
254 # lazy test, because $(GhcUnregisterised) might be set in build.mk later.
255 GhcWithNativeCodeGen=$(strip\
256     $(if $(filter YESYESNO,\
257                   $(OsSupportsNCG)$(ArchSupportsNCG)$(GhcUnregisterised)),YES,NO))
258
259 # Include support for generating Java
260 GhcWithJavaGen=NO
261
262 HaveLibDL = @HaveLibDL@
263
264 # ArchSupportsSMP should be set iff there is support for that arch in
265 # includes/SMP.h
266 ArchSupportsSMP=$(strip $(patsubst $(HostArch_CPP), YES, $(findstring $(HostArch_CPP), i386 x86_64 sparc powerpc)))
267
268 # lazy test, because $(GhcUnregisterised) might be set in build.mk later.
269 GhcWithSMP=$(strip $(if $(filter YESNO, $(ArchSupportsSMP)$(GhcUnregisterised)),YES,NO))
270
271 # Whether to include GHCi in the compiler.  Depends on whether the RTS linker
272 # has support for this OS/ARCH combination.
273
274 OsSupportsGHCi=$(strip $(patsubst $(HostOS_CPP), YES, $(findstring $(HostOS_CPP), mingw32 cygwin32 linux solaris2 freebsd netbsd openbsd darwin)))
275 ArchSupportsGHCi=$(strip $(patsubst $(HostArch_CPP), YES, $(findstring $(HostArch_CPP), i386 x86_64 powerpc sparc sparc64)))
276
277 ifeq "$(OsSupportsGHCi)$(ArchSupportsGHCi)" "YESYES"
278 GhcWithInterpreter=YES
279 else 
280 GhcWithInterpreter=NO
281 endif
282
283 # GhcEnableTablesNextToCode tells us whether the target architecture
284 # supports placing info tables directly before the entry code
285 # (see TABLES_NEXT_TO_CODE in the RTS).  Whether we actually compile for
286 # TABLES_NEXT_TO_CODE depends on whether we're building unregisterised
287 # code or not, which may be decided by options to the compiler later.
288 ifneq "$(findstring $(TargetArch_CPP)X, ia64X powerpc64X)" ""
289 GhcEnableTablesNextToCode=NO
290 else
291 GhcEnableTablesNextToCode=YES
292 endif
293
294 #
295 # Building various ways?
296 # (right now, empty if not).
297 BuildingParallel=$(subst mp,YES,$(filter mp,$(WAYS)))
298 BuildingGranSim=$(subst mg,YES,$(filter mg,$(WAYS)))
299
300 # Interface file version (hi-boot files only)
301 #
302 # A GHC built with HscIfaceFileVersion=n will look for 
303 #       M.hi-boot-n, and only then for 
304 #       M.hi-boot.
305 # (It'll be happy with the latter if the former doesn't exist.)
306 #
307 #
308 # This variable is used ONLY for hi-boot files.  Its only purpose is
309 # to allow you to have a single directory with multiple .hi-boot files
310 # for the same module, each corresponding to a different version of
311 # GHC.
312 #
313 # HscIfaceFileVersion is propagated to hsc via
314 # compiler/main/Config.hs, which is automatically generated by
315 # compiler/Makefile.
316
317 HscIfaceFileVersion=6
318
319 MakefileDeps=YES
320
321 #------------------------------------------------------------------------------
322 # Options for Libraries
323
324 # What extra ways to build the libraries in
325 # In addition to the normal sequential way, the default is to also build
326 # profiled prelude libraries.
327 # When booting from .hc files, turn this off.
328 ifeq "$(BootingFromHc)" "YES"
329 GhcLibWays=
330 else
331 GhcLibWays=p
332 endif
333
334 # In addition, the RTS is built in some further variations.  Ways that
335 # make sense here:
336
337 #   thr         : threaded
338 #   thr_p       : threaded profiled
339 #   debug       : debugging (compile with -g for the C compiler, and -DDEBUG)
340 #   debug_p     : debugging profiled
341 #   debug_u     : debugging unregisterised
342 #   thr_debug   : debugging threaded
343 #   thr_debug_p : debugging threaded profiled
344 #   t           : ticky-ticky profiling
345 #   debug_t     : debugging ticky-ticky profiling
346 #
347 GhcRTSWays=
348
349 # Usually want the debug version
350 ifeq "$(BootingFromHc)" "NO"
351 GhcRTSWays += debug 
352 endif
353
354 # Want the threaded versions unless we're unregisterised
355 # Defer the check until later by using $(if..), because GhcUnregisterised might
356 # be set in build.mk, which hasn't been read yet.
357 GhcRTSWays += $(if $(findstring NO, $(GhcUnregisterised)),thr thr_p thr_debug,)
358
359 # We can only build GHCi threaded if we have a threaded RTS:
360 ifneq "$(findstring thr, $(GhcRTSWays))" ""
361 GhcThreaded=YES
362 else
363 GhcThreaded=NO
364 endif
365
366 # Option flags to pass to GHC when it's compiling modules in
367 # fptools/libraries.  Typically these are things like -O or
368 # -dcore-lint or -H32m.  The ones that are *essential* are wired into
369 # the build system.
370 #
371 #       -O is pretty desirable, otherwise no inlining of prelude
372 #               things (incl "+") happens when compiling with this compiler
373 #
374 #       -fgenerics switches on generation of support code for 
375 #               derivable type classes.  This is now off by default,
376 #               but we switch it on for the libraries so that we generate
377 #               the code in case someone importing wants it
378
379 GhcLibHcOpts=-O -Rghc-timing -fgenerics
380
381 # Win32 only: Enable the RTS and libraries to be built as DLLs
382 DLLized=@EnableWin32DLLs@
383
384 # Strip local symbols from libraries?  This can make the libraries smaller,
385 # but makes debugging somewhat more difficult.  Doesn't work with all ld's.
386 #
387 StripLibraries=NO
388
389 # These are the URL patterns that Haddock uses to generate the "Source
390 # File" links on each page.
391 CorePackageSourceURL = http://darcs.haskell.org/ghc-6.6/packages/$(PACKAGE)/%{FILE}
392 ExtraPackageSourceURL = http://darcs.haskell.org/packages/$(PACKAGE)/%{FILE}
393
394 # These are the packages required to be present in order to bootstrap GHC
395 # NB. must be synced with libraries/core-packages
396 CorePackages = base Cabal haskell98 readline regex-base regex-compat \
397                regex-posix parsec stm template-haskell unix Win32
398
399 # ----------------------------------------------------------------------------
400 # Object-file splitting
401 #
402 #       Set SplitObjs=YES or NO in your build.mk
403 #
404 #       Don't use -split-objs in in GhcLibHcOpts, because the build
405 #               system needs to do other special magic if you are
406 #               doing object-file splitting
407
408 # lazy test, so that $(GhcUnregisterised) can be set in build.mk
409 SplitObjs=$(strip $(if $(filter $(TargetArch_CPP),i386 x86_64 powerpc sparc),\
410                     $(if $(filter YES,$(BootingFromHC)),\
411                       NO,\
412                       $(if $(filter NO,$(GhcUnregisterised)),\
413                         YES,\
414                         NO)),\
415                     NO))
416
417 # Math library
418 LIBM=@LIBM@
419
420 # Build the ObjectIO ?
421 #
422 GhcLibsWithObjectIO=@GhcLibsWithObjectIO@
423
424 # .NET interop support?
425 #
426 DotnetSupport=@DotnetSupport@
427
428 # Build unix package?
429 #
430 GhcLibsWithUnix=@GhcLibsWithUnix@
431
432 # ----------------------------------------------------------------------------
433 # Options for GHC's RTS
434
435 # For an optimised RTS (you probably don't want to change these; we build
436 # a debugging RTS by default now.  Use -debug to get it).
437 GhcRtsHcOpts=-optc-O2
438 GhcRtsCcOpts=-fomit-frame-pointer
439
440 # Include the front panel code?  Needs GTK+.
441 GhcRtsWithFrontPanel = NO
442
443 # Include support for CPU performance counters via the PAPI library in the RTS?
444 # (PAPI: http://icl.cs.utk.edu/papi/)
445 GhcRtsWithPapi = NO
446 HavePapi = @HavePapi@
447
448 ################################################################################
449 #
450 #               nofib
451 #
452 #       nofib specific options
453 #
454 ################################################################################
455
456 WithNofibHc = $(GHC_INPLACE)
457
458 # NoFibSubDirs controls which set of tests should be run
459 # You can run one or more of
460 #       imaginary 
461 #       spectral
462 #       real
463 #       parallel
464 #       PRIVATE
465 #       PENDING
466 #       UNUSED
467 NoFibSubDirs = imaginary spectral real
468
469 # The different ways to build nofib. Default is just to mirror
470 # what is done for the ghc prelude libraries.
471 #
472 NoFibWays = $(GhcLibWays)
473
474 # Haskell compiler options for nofib
475 NoFibHcOpts = -O
476
477 # Number of times to run each program
478 NoFibRuns = 5
479
480 ################################################################################
481 #
482 #               Paths (see paths.mk)
483 #
484 ################################################################################
485
486 # Directory used by GHC (and possibly other tools) for storing
487 # temporary files.  If your TMPDIR isn't big enough, either override
488 # this in build.mk or set your environment variable "TMPDIR" to point
489 # to somewhere with more space.  (TMPDIR=. is a good choice).
490
491 # DEFAULT_TMPDIR isn't called TMPDIR because GNU make tends to
492 # override an environment variable with the value of the make variable
493 # of the same name (if it exists) when executing sub-processes, so
494 # setting the TMPDIR env var would have no effect in the build tree.
495
496 DEFAULT_TMPDIR          = /tmp
497 ifeq "$(TARGETPLATFORM)" "i386-unknown-cygwin32"
498 DEFAULT_TMPDIR          = /C/TEMP
499 endif
500 ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
501 DEFAULT_TMPDIR          = /C/TEMP
502 endif
503
504 # FPTOOLS_TOP: the top of the fptools hierarchy, absolute path. (POSIX / unix-style path).
505 FPTOOLS_TOP_ABS         = @hardtop@
506 # The platform specific version of 'hardtop'.
507 FPTOOLS_TOP_ABS_PLATFORM = @hardtop_plat@
508
509 # This gets used in the default docdir
510 PACKAGE_TARNAME = @PACKAGE_TARNAME@
511
512 BIN_DIST_NAME=ghc-$(ProjectVersion)
513 BIN_DIST_TOPDIR=$(FPTOOLS_TOP_ABS)
514 BIN_DIST_DIR=$(BIN_DIST_TOPDIR)/$(BIN_DIST_NAME)
515 BIN_DIST_TARBALL=$(BIN_DIST_TOPDIR)/$(BIN_DIST_NAME)-$(TARGETPLATFORM).tar.bz2
516
517 #
518 # Installation directories, we don't use half of these,
519 # but since the configure script has them on offer while
520 # passing through, we might as well set them.
521
522 prefix          := @prefix@
523
524 # New autoconf (>= 2.60?) make a configure with a --datarootdir=DIR flag.
525 # However, in order to support older autoconf's we don't use it.
526 # datarootdir is set lower down instead.
527 # datarootdir           = @datarootdir@
528
529 exec_prefix     := @exec_prefix@
530 bindir          := @bindir@
531 datadir0        := @datadir@
532 libdir0         := @libdir@
533 includedir      := @includedir@
534 oldincludedir   := @oldincludedir@
535 mandir          := @mandir@
536
537 ifeq "$(Windows)" "YES"
538
539 ifeq "$(strip $(prefix))" ""
540 prefix          = /c/ghc
541 endif
542
543 # Hack: our directory layouts tend to be different on Windows, so
544 # hack around configure's bogus assumptions here.
545 datarootdir := $(prefix)
546 datadir     := $(prefix)
547 libdir      := $(prefix)
548
549 else
550
551 #
552 # Unix: override libdir and datadir to put ghc-specific stuff in
553 # a subdirectory with the version number included.
554 #
555 datarootdir := $(datadir0)
556 datadir     := $(datadir0)/ghc-$(ProjectVersion)
557 libdir      := $(libdir0)/ghc-$(ProjectVersion)
558
559 endif # Windows
560
561 headerdir := $(libdir)/include
562
563 # New autoconf (>= 2.60?) make a configure with --docdir=DIR etc flags.
564 # However, in order to support older autoconf's we don't use them.
565
566 #docdir    := @docdir@
567 #htmldir   := @htmldir@
568 #dvidir    := @dvidir@
569 #pdfdir    := @pdfdir@
570 #psdir     := @psdir@
571
572 docdir    := $(datarootdir)/doc/ghc
573 htmldir   := $(docdir)
574 dvidir    := $(docdir)
575 pdfdir    := $(docdir)
576 psdir     := $(docdir)
577
578 # Default place for putting interface files is $(libdir)
579 # (overriden for packages in package.mk)
580 ifacedir                = $(libdir)
581
582
583 # Default values for most of the above are only set if
584 # they weren't configured to anything in particular
585 # via the configure script. (i.e., we make no assumption
586 # that the autoconf-generated script will assign defaults
587 # to all of the above).
588 #
589 ifeq "$(strip $(exec_prefix))" ""
590 exec_prefix             = $(prefix)
591 endif
592 ifeq "$(strip $(bindir))" ""
593 bindir                  = $(exec_prefix)/bin
594 endif
595
596 #
597 # NOTE: by intention, libexecdir and libdir point to 
598 # the same place.
599 #  => Only way to override this is to set libexecdir= on the command line.
600 #     (NOTE: configure script setting is ignored).
601 libexecdir              = $(libdir)
602
603 ifeq "$(strip $(datadir))" ""
604 datadir         = $(prefix)/share
605 endif
606 ifeq "$(strip $(libdir))" ""
607 libdir          = $(exec_prefix)/lib
608 endif
609 ifeq "$(strip $(includedir))" ""
610 includedir      = $(prefix)/include
611 endif
612 ifeq "$(strip $(oldincludedir))" ""
613 oldincludedir   = /usr/include
614 endif
615 ifeq "$(strip $(mandir))" ""
616 mandir          = $(prefix)/man
617 endif
618
619 #-----------------------------------------------------------------------------
620 # install configuration
621
622 #
623 # Set this to have files installed with a specific owner
624 #
625 INSTALL_OWNER =
626
627
628 # Set this to have files installed with a specific group
629 #
630 INSTALL_GROUP =
631
632 #
633 # Invocations of `install' for the four different classes
634 # of targets:
635 #
636 INSTALL_PROGRAM = $(INSTALL) -m 755
637 INSTALL_SCRIPT  = $(INSTALL) -m 755
638 INSTALL_SHLIB   = $(INSTALL) -m 755
639 INSTALL_DATA    = $(INSTALL) -m 644
640 INSTALL_HEADER  = $(INSTALL) -m 644
641 INSTALL_MAN     = $(INSTALL) -m 644
642 INSTALL_DIR     = $(MKDIRHIER)
643
644 # -----------------------------------------------------------------------------
645 # Utilities programs: flags 
646
647 # If you want to give any standard flags to pretty much any utility
648 # (see utils.mk for a complete list), by adding a line here
649 #
650 #       SRC_P_OPTS += ...
651 #
652 # where P is the utility. For example, to add -O to all Haskell
653 # compilations, 
654 #
655 #       SRC_HC_OPTS += -O
656
657 SRC_HC_OPTS += -H16m -O
658
659 # These flags make flex 8-bit
660 SRC_FLEX_OPTS   += -8
661
662 SRC_INSTALL_BIN_OPTS    += -s
663
664 # lint gets all CPP's flags too
665 SRC_LINT_OPTS           += -axz -DLINT $(SRC_CPP_OPTS)
666 WAY$(_way)_LINT_OPTS    += WAY$(_way)_CPP_OPTS
667
668 # Default fptools options for dllwrap.
669 SRC_BLD_DLL_OPTS += -mno-cygwin --target=i386-mingw32
670
671 # Flags for CPP when running GreenCard on .pgc files
672 GC_CPP_OPTS += -P -E -x c -traditional -D__GLASGOW_HASKELL__
673
674
675 ################################################################################
676 #
677 #       Layout of the source tree
678 #
679 ################################################################################
680
681 # Here we provide defines for the various directories in the source tree,
682 # so we can move things around more easily.  A define $(GHC_FOO_DIR_REL)
683 # indicates a directory relative to the top of the source tree, whereas
684 # $(GHC_FOO_DIR) is a directory relative to the current directory.
685 # $(GHC_FOO_DIR_ABS) is the absolute path to the directory.
686
687 GHC_UTILS_DIR_REL       = utils
688 GHC_INCLUDE_DIR_REL     = includes
689 GHC_COMPILER_DIR_REL    = compiler
690 GHC_RTS_DIR_REL         = rts
691 GHC_UTILS_DIR_REL       = utils
692 GHC_DRIVER_DIR_REL      = driver
693 GHC_COMPAT_DIR_REL      = compat
694
695 GHC_MKDEPENDC_DIR_REL   = $(GHC_UTILS_DIR_REL)/mkdependC
696 GHC_LTX_DIR_REL         = $(GHC_UTILS_DIR_REL)/ltx
697 GHC_RUNTEST_DIR_REL     = $(GHC_UTILS_DIR_REL)/runstdtest
698 GHC_LNDIR_DIR_REL       = $(GHC_UTILS_DIR_REL)/lndir
699 GHC_MKDIRHIER_DIR_REL   = $(GHC_UTILS_DIR_REL)/mkdirhier
700 GHC_DOCBOOK_DIR_REL     = $(GHC_UTILS_DIR_REL)/docbook
701 GHC_UNLIT_DIR_REL       = $(GHC_UTILS_DIR_REL)/unlit
702 GHC_HP2PS_DIR_REL       = $(GHC_UTILS_DIR_REL)/hp2ps
703 GHC_HSTAGS_DIR_REL      = $(GHC_UTILS_DIR_REL)/hasktags
704 GHC_HSC2HS_DIR_REL      = $(GHC_UTILS_DIR_REL)/hsc2hs
705 GHC_TOUCHY_DIR_REL      = $(GHC_UTILS_DIR_REL)/touchy
706 GHC_PKG_DIR_REL         = $(GHC_UTILS_DIR_REL)/ghc-pkg
707 GHC_GENPRIMOP_DIR_REL   = $(GHC_UTILS_DIR_REL)/genprimopcode
708 GHC_GENAPPLY_DIR_REL    = $(GHC_UTILS_DIR_REL)/genapply
709
710 GHC_MANGLER_DIR_REL     = $(GHC_DRIVER_DIR_REL)/mangler
711 GHC_SPLIT_DIR_REL       = $(GHC_DRIVER_DIR_REL)/split
712 GHC_SYSMAN_DIR_REL      = $(GHC_RTS_DIR_REL)/parallel
713
714 GHC_UTILS_DIR           = $(FPTOOLS_TOP)/$(GHC_UTILS_DIR_REL)
715 GHC_INCLUDE_DIR         = $(FPTOOLS_TOP)/$(GHC_INCLUDE_DIR_REL)
716 GHC_COMPILER_DIR        = $(FPTOOLS_TOP)/$(GHC_COMPILER_DIR_REL)
717 GHC_RTS_DIR             = $(FPTOOLS_TOP)/$(GHC_RTS_DIR_REL)
718 GHC_UTILS_DIR           = $(FPTOOLS_TOP)/$(GHC_UTILS_DIR_REL)
719 GHC_DRIVER_DIR          = $(FPTOOLS_TOP)/$(GHC_DRIVER_DIR_REL)
720 GHC_COMPAT_DIR          = $(FPTOOLS_TOP)/$(GHC_COMPAT_DIR_REL)
721
722 GHC_MKDEPENDC_DIR       = $(FPTOOLS_TOP)/$(GHC_MKDEPENDC_DIR_REL)
723 GHC_LTX_DIR             = $(FPTOOLS_TOP)/$(GHC_LTX_DIR_REL)
724 GHC_RUNTEST_DIR         = $(FPTOOLS_TOP)/$(GHC_RUNTEST_DIR_REL)
725 GHC_LNDIR_DIR           = $(FPTOOLS_TOP)/$(GHC_LNDIR_DIR_REL)
726 GHC_MKDIRHIER_DIR       = $(FPTOOLS_TOP)/$(GHC_MKDIRHIER_DIR_REL)
727 GHC_DOCBOOK_DIR         = $(FPTOOLS_TOP)/$(GHC_DOCBOOK_DIR_REL)
728 GHC_UNLIT_DIR           = $(FPTOOLS_TOP)/$(GHC_UNLIT_DIR_REL)
729 GHC_HP2PS_DIR           = $(FPTOOLS_TOP)/$(GHC_HP2PS_DIR_REL)
730 GHC_HSTAGS_DIR          = $(FPTOOLS_TOP)/$(GHC_HSTAGS_DIR_REL)
731 GHC_HSC2HS_DIR          = $(FPTOOLS_TOP)/$(GHC_HSC2HS_DIR_REL)
732 GHC_TOUCHY_DIR          = $(FPTOOLS_TOP)/$(GHC_TOUCHY_DIR_REL)
733 GHC_PKG_DIR             = $(FPTOOLS_TOP)/$(GHC_PKG_DIR_REL)
734 GHC_GENPRIMOP_DIR       = $(FPTOOLS_TOP)/$(GHC_GENPRIMOP_DIR_REL)
735 GHC_GENAPPLY_DIR        = $(FPTOOLS_TOP)/$(GHC_GENAPPLY_DIR_REL)
736
737 GHC_MANGLER_DIR         = $(FPTOOLS_TOP)/$(GHC_MANGLER_DIR_REL)
738 GHC_SPLIT_DIR           = $(FPTOOLS_TOP)/$(GHC_SPLIT_DIR_REL)
739 GHC_SYSMAN_DIR          = $(FPTOOLS_TOP)/$(GHC_SYSMAN_DIR_REL)
740
741 GHC_UTILS_DIR_ABS       = $(FPTOOLS_TOP_ABS)/$(GHC_UTILS_DIR_REL)
742 GHC_INCLUDE_DIR_ABS     = $(FPTOOLS_TOP_ABS)/$(GHC_INCLUDE_DIR_REL)
743 GHC_COMPILER_DIR_ABS    = $(FPTOOLS_TOP_ABS)/$(GHC_COMPILER_DIR_REL)
744 GHC_RTS_DIR_ABS         = $(FPTOOLS_TOP_ABS)/$(GHC_RTS_DIR_REL)
745 GHC_UTILS_DIR_ABS       = $(FPTOOLS_TOP_ABS)/$(GHC_UTILS_DIR_REL)
746 GHC_DRIVER_DIR_ABS      = $(FPTOOLS_TOP_ABS)/$(GHC_DRIVER_DIR_REL)
747 GHC_COMPAT_DIR_ABS      = $(FPTOOLS_TOP_ABS)/$(GHC_COMPAT_DIR_REL)
748
749 GHC_MKDEPENDC_DIR_ABS   = $(FPTOOLS_TOP_ABS)/$(GHC_MKDEPENDC_DIR_REL)
750 GHC_LTX_DIR_ABS         = $(FPTOOLS_TOP_ABS)/$(GHC_LTX_DIR_REL)
751 GHC_RUNTEST_DIR_ABS     = $(FPTOOLS_TOP_ABS)/$(GHC_RUNTEST_DIR_REL)
752 GHC_LNDIR_DIR_ABS       = $(FPTOOLS_TOP_ABS)/$(GHC_LNDIR_DIR_REL)
753 GHC_MKDIRHIER_DIR_ABS   = $(FPTOOLS_TOP_ABS)/$(GHC_MKDIRHIER_DIR_REL)
754 GHC_DOCBOOK_DIR_ABS     = $(FPTOOLS_TOP_ABS)/$(GHC_DOCBOOK_DIR_REL)
755 GHC_UNLIT_DIR           = $(FPTOOLS_TOP_ABS)/$(GHC_UNLIT_DIR_REL)
756 GHC_HP2PS_DIR_ABS       = $(FPTOOLS_TOP_ABS)/$(GHC_HP2PS_DIR_REL)
757 GHC_HSTAGS_DIR_ABS      = $(FPTOOLS_TOP_ABS)/$(GHC_HSTAGS_DIR_REL)
758 GHC_HSC2HS_DIR_ABS      = $(FPTOOLS_TOP_ABS)/$(GHC_HSC2HS_DIR_REL)
759 GHC_TOUCHY_DIR_ABS      = $(FPTOOLS_TOP_ABS)/$(GHC_TOUCHY_DIR_REL)
760 GHC_PKG_DIR_ABS         = $(FPTOOLS_TOP_ABS)/$(GHC_PKG_DIR_REL)
761 GHC_GENPRIMOP_DIR_ABS   = $(FPTOOLS_TOP_ABS)/$(GHC_GENPRIMOP_DIR_REL)
762 GHC_GENAPPLY_DIR_ABS    = $(FPTOOLS_TOP_ABS)/$(GHC_GENAPPLY_DIR_REL)
763
764 GHC_MANGLER_DIR_ABS     = $(FPTOOLS_TOP_ABS)/$(GHC_MANGLER_DIR_REL)
765 GHC_SYSMAN_DIR_ABS      = $(FPTOOLS_TOP_ABS)/$(GHC_SYSMAN_DIR_REL)
766 GHC_SPLIT_DIR_ABS       = $(FPTOOLS_TOP_ABS)/$(GHC_SPLIT_DIR_REL)
767
768 # -----------------------------------------------------------------------------
769 # Names of programs in the GHC tree
770 #
771 #      xxx_PGM          the name of an executable, without the path
772 #      xxx              the executable relative to the current dir
773
774 GHC_UNLIT_PGM           = unlit$(exeext)
775 GHC_HP2PS_PGM           = hp2ps
776 GHC_HSTAGS_PGM          = hasktags
777 GHC_HSC2HS_INPLACE_PGM  = hsc2hs-inplace
778 GHC_TOUCHY_PGM          = touchy$(exeext)
779 GHC_MANGLER_PGM         = ghc-asm
780 GHC_SPLIT_PGM           = ghc-split
781 GHC_SYSMAN_PGM          = SysMan
782 GHC_PKG_INPLACE_PGM     = ghc-pkg-inplace
783 GHC_GENPRIMOP_PGM       = genprimopcode
784 GHC_GENAPPLY_PGM        = genapply
785 GHC_MKDEPENDC_PGM       = mkdependC
786 GHC_LTX_PGM             = ltx
787 GHC_MKDIRHIER_PGM       = mkdirhier
788 GHC_LNDIR_PGM           = lndir
789 GHC_RUNTEST_PGM         = runstdtest
790
791 ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
792 GHC_CP                  = "xcopy /y"
793 GHC_PERL                = perl
794 else
795 GHC_CP                  = $(CP)
796 GHC_PERL                = $(PERL)
797 endif
798
799 UNLIT                   = $(GHC_UNLIT_DIR)/$(GHC_UNLIT_PGM)
800 HP2PS                   = $(GHC_HP2PS_DIR)/$(GHC_HP2PS_PGM)
801 HSTAGS                  = $(GHC_HSTAGS_DIR)/$(GHC_HSTAGS_PGM)
802 HSC2HS_INPLACE          = $(GHC_HSC2HS_DIR)/$(GHC_HSC2HS_INPLACE_PGM)
803 MANGLER                 = $(GHC_MANGLER_DIR)/$(GHC_MANGLER_PGM)
804 SPLIT                   = $(GHC_SPLIT_DIR)/$(GHC_SPLIT_PGM)
805 SYSMAN                  = $(GHC_SYSMAN_DIR)/$(GHC_SYSMAN_PGM)
806 GHC_PKG_INPLACE         = $(GHC_PKG_DIR)/$(GHC_PKG_INPLACE_PGM)
807 GENPRIMOP               = $(GHC_GENPRIMOP_DIR)/$(GHC_GENPRIMOP_PGM)
808 GENAPPLY                = $(GHC_GENAPPLY_DIR)/$(GHC_GENAPPLY_PGM)
809 MKDEPENDC               = $(GHC_MKDEPENDC_DIR)/$(GHC_MKDEPENDC_PGM)
810 LTX                     = $(GHC_LTX_DIR)/$(GHC_LTX_PGM)
811 MKDIRHIER               = $(GHC_MKDIRHIER_DIR)/$(GHC_MKDIRHIER_PGM)
812 LNDIR                   = $(GHC_LNDIR_DIR)/$(GHC_LNDIR_PGM)
813 RUNTEST                 = $(GHC_RUNTEST_DIR)/$(GHC_RUNTEST_PGM)
814
815 GENERATED_FILE  = chmod a-w
816 EXECUTABLE_FILE = chmod +x
817
818 #-----------------------------------------------------------------------------
819 # Haskell compilers and mkdependHS
820
821 # $(GHC), $(HBC) and $(NHC) point to installed versions of the relevant
822 # compilers, if available.
823 #
824 # $(HC) is a generic Haskell 98 compiler, set to $(GHC) by default.
825 # $(MKDEPENDHS) is the Haskell dependency generator (ghc -M).
826 #
827 # NOTE: Don't override $(GHC) in build.mk, use configure --with-ghc instead
828 # (because the version numbers have to be calculated).
829
830 GHC             = @WithGhc@
831 GhcDir          = $(dir $(GHC))
832
833 # Set to YES if $(GHC) has the readline package installed
834 GhcHasReadline  = @GhcHasReadline@
835
836 HBC             = @HBC@
837 NHC             = @NHC@
838
839 # Sometimes we want to invoke ghc from the build tree in different
840 # places (eg. it's handy to have a nofib & a ghc build in the same
841 # tree).  We can refer to "this ghc" as $(GHC_INPLACE):
842
843 GHC_INPLACE     = $(GHC_COMPILER_DIR)/ghc-inplace
844 GHC_STAGE1      = $(GHC_COMPILER_DIR)/stage1/ghc-inplace
845 GHC_STAGE2      = $(GHC_COMPILER_DIR)/stage2/ghc-inplace
846 GHC_STAGE3      = $(GHC_COMPILER_DIR)/stage3/ghc-inplace
847
848 ifneq "$(findstring YES, $(UseStage1) $(BootingFromHc))" ""
849
850 # We are using the stage1 compiler to compile Haskell code, set up
851 # some variables appropriately:
852 HC              =$(GHC_STAGE1)
853 MKDEPENDHS      =$(GHC_STAGE1)
854 GhcVersion      = @ProjectVersion@
855 GhcPatchLevel   = @ProjectPatchLevel@
856 # oops, these are wrong:
857 GhcMajVersion   = @GhcMajVersion@
858 GhcMinVersion   = @GhcMinVersion@
859
860 ghc_ge_601 = YES
861 ghc_ge_602 = YES
862 ghc_ge_603 = YES
863 ghc_ge_605 = YES
864 ghc_ge_607 = YES
865
866 else # not UseStage1 or BootingFromHc
867
868 HC              = @WithHc@
869 MKDEPENDHS      = $(GHC)
870 GhcVersion      = @GhcVersion@
871 GhcPatchLevel   = @GhcPatchLevel@
872 GhcMajVersion   = @GhcMajVersion@
873 GhcMinVersion   = @GhcMinVersion@
874
875 # Some useful GHC version predicates:
876 ghc_ge_601 = @ghc_ge_601@
877 ghc_ge_602 = @ghc_ge_602@
878 ghc_ge_603 = @ghc_ge_603@
879 ghc_ge_605 = @ghc_ge_605@
880 ghc_ge_607 = @ghc_ge_607@
881 endif
882
883 # Canonicalised ghc version number, used for easy (integer) version
884 # comparisons.  We must expand $(GhcMinVersion) to two digits by
885 # adding a leading zero if necessary:
886 ifneq "$(findstring $(GhcMinVersion), 0 1 2 3 4 5 6 7 8 9)" ""
887 GhcCanonVersion = $(GhcMajVersion)0$(GhcMinVersion)
888 else
889 GhcCanonVersion = $(GhcMajVersion)$(GhcMinVersion)
890 endif
891
892 #-----------------------------------------------------------------------------
893 # C compiler
894 #
895 # NB. Don't override $(WhatGccIsCalled) using build.mk,  re-configure using
896 # the flag --with-gcc=<blah> instead.  The reason is that the configure script
897 # needs to know which gcc you're using in order to perform its tests.
898
899 HaveGcc         = @HaveGcc@
900 UseGcc          = YES
901 WhatGccIsCalled = @WhatGccIsCalled@
902 GccVersion      = @GccVersion@
903 ifeq "$(strip $(HaveGcc))" "YES"
904 ifneq "$(strip $(UseGcc))"  "YES"
905   CC    = cc
906 else
907   CC    = $(WhatGccIsCalled)
908   GccDir = $(dir $(WhatGccIsCalled))
909 endif
910 endif
911
912 # default C compiler flags
913 SRC_CC_OPTS = @SRC_CC_OPTS@
914
915 ifeq "$(TARGETPLATFORM)" "ia64-unknown-linux"
916 SRC_CC_OPTS += -G0
917 endif
918
919 #-----------------------------------------------------------------------------
920 # GMP Library (version 2.0.x or above)
921 #
922 HaveLibGmp      = @HaveLibGmp@
923 LibGmp          = @LibGmp@
924
925 GMP_INCLUDE_DIRS=@GMP_INCLUDE_DIRS@
926 GMP_LIB_DIRS=@GMP_LIB_DIRS@
927
928 #-----------------------------------------------------------------------------
929 # GMP framework (Mac OS X)
930 #
931 HaveFrameworkGMP = @HaveFrameworkGMP@
932
933 #-----------------------------------------------------------------------------
934 # Mingwex Library
935 #
936 HaveLibMingwEx  = @HaveLibMingwEx@
937
938 #-----------------------------------------------------------------------------
939 # Flex (currently unused, could be moved to glafp-utils)
940
941 # FLEX                  = @LEX@
942 # Don't bother with -lfl, we define our own yywrap()s anyway.
943 # FLEX_LIB              = 
944 #WAS:FLEX_LIB           = @LEXLIB@
945
946 #-----------------------------------------------------------------------------
947 # Other standard (ha!) Unix utilities
948
949 AR                      = @ArCmd@
950 ArSupportsInput         = @ArSupportsInput@
951 # Yuckage: for ghc/utils/parallel -- todo: nuke this dependency!!
952 BASH                    = /usr/local/bin/bash
953
954 CONTEXT_DIFF            = @ContextDiffCmd@
955 CP                      = cp
956 CPP                     = @CPP@ @CPPFLAGS@
957 CTAGS                   = $(ETAGS)
958 #
959 # RAWCPP_FLAGS are the flags to give to cpp (viz, gcc -E) to persuade it to
960 # behave plausibly on Haskell sources.
961 #
962 RAWCPP_FLAGS            = -undef -traditional
963 FIND                    = @FindCmd@
964 SORT                    = @SortCmd@
965 INSTALL                 = @INSTALL@
966 #
967 # Sigh - the autoconf macro for INSTALL will subst a relative path to the fallback
968 # install-sh script (if chosen). This not terribly useful to us, so we convert
969 # it into an abs. path.
970
971 INSTALL                 := $(subst .././install-sh,$(FPTOOLS_TOP_ABS)/install-sh,$(INSTALL))
972 LATEX                   = latex
973 HEVEA                   = hevea
974 HACHA                   = hacha
975 LN_S                    = @LN_S@
976 MANMACROS               = -man
977 MSMACROS                = -ms
978 MV                      = mv
979 NROFF                   = nroff
980 PERL                    = @PerlCmd@
981 PYTHON                  = @PythonCmd@
982 PIC                     = pic
983 PREPROCESSCMD           = $(CC) -E
984 RANLIB                  = @RANLIB@
985 RM                      = rm -f
986 SED                     = @SedCmd@
987 SHELL                   = /bin/sh
988
989 LD                      = @LdCmd@
990
991 # Some ld's support the -x flag and some don't, so the configure
992 # script detects which we have and sets LdXFlag to "-x" or ""
993 # respectively.
994 LD_X                    = @LdXFlag@
995
996 # GNU ld supports input via a linker script, which is useful to avoid
997 # overflowing command-line length limits.
998 LdIsGNULd               = @LdIsGNULd@
999
1000 #
1001 # In emergency situations, REAL_SHELL is used to perform shell commands
1002 # from within the ghc driver script, by scribbling the command line to
1003 # a temp file and then having $(REAL_SHELL) execute it. 
1004 #
1005 # The reason for having to do this is that overly long command lines
1006 # cause unnecessary trouble with some shells (e.g., /bin/sh on Solaris
1007 # 2.5.1), which is why this backdoor is provided. The situation of overly
1008 # long command lines is either encountered while doing `make boot' in compiler/, 
1009 # or when linking the compiler binary (`hsc'). 
1010 #
1011 # We do not use SHELL to execute long commands, as `make' will more than likely
1012 # override whatever setting you have in your environment while executing. 
1013
1014 # By default, REAL_SHELL is set equal to SHELL, which is not really a smart move
1015 # as it is SHELL that will show up the bogosity in the first place, but setting
1016 # it to anything else isn't really portable.
1017 #
1018 #  ====> If long command lines cause you trouble, invoke `ghc' (via `make' or otherwise)
1019 # with REAL_SHELL set to something else than /bin/sh, for instance, your favourite
1020 # command shell.
1021 #
1022 REAL_SHELL=$(SHELL)
1023 SIZE                    = size
1024 STRIP                   = strip
1025 TAR                     = @TarCmd@
1026 ZIP                     = zip
1027
1028 #
1029 # This is special to literate/, ToDo: add literate-specific
1030 # configure setup to literate/.
1031 #
1032 TBL                     = tbl
1033 TEX                     = tex
1034 TGRIND                  = tgrind
1035 TGRIND_HELPER           = /usr/local/lib/tgrind/tfontedpr # XXX
1036 TIB                     = tib
1037
1038 TIME                    = @TimeCmd@
1039 TROFF                   = troff
1040 UNAME                   = uname
1041
1042 # GTK+
1043 GTK_CONFIG = @GTK_CONFIG@
1044
1045 # Set this if you want to use Inno Setup to build a Windows installer
1046 # when you make a bindist
1047 ISCC                    =
1048
1049 #-----------------------------------------------------------------------------
1050 # DocBook XML stuff
1051
1052 XSLTPROC                = @XsltprocCmd@
1053 XMLLINT                 = @XmllintCmd@
1054 FOP                     = @FopCmd@
1055 XMLTEX                  = @XmltexCmd@
1056 PDFXMLTEX               = @PdfxmltexCmd@
1057 DVIPS                   = @DvipsCmd@
1058
1059 DIR_DOCBOOK_XSL         = @DIR_DOCBOOK_XSL@
1060
1061 XSLTPROC_LABEL_OPTS     = --stringparam toc.section.depth 3 \
1062                           --stringparam section.autolabel 1 \
1063                           --stringparam section.label.includes.component.label 1
1064
1065 #-----------------------------------------------------------------------------
1066 #               FPtools support software
1067
1068 BLD_DLL                 = dllwrap
1069
1070 #
1071 # .NET support software
1072 #
1073 ILX2IL                  = ilx2il
1074 ILASM                   = ilasm
1075
1076 #
1077 # ghc-pkg
1078 #
1079 GHC_PKG                 = @GhcPkgCmd@
1080
1081 #
1082 # GreenCard
1083 #
1084 GREENCARD               = @GreenCardCmd@
1085 GREENCARD_VERSION       = @GreenCardVersion@            
1086
1087 #
1088 # Happy
1089 #
1090 HAPPY                   = @HappyCmd@
1091 HAPPY_VERSION           = @HappyVersion@                
1092 #
1093 # Options to pass to Happy when we're going to compile the output with GHC
1094 #
1095 GHC_HAPPY_OPTS          = -agc
1096
1097 # Temp. to work around performance problems in the HEAD around 8/12/2003,
1098 # A Happy compiled with this compiler needs more stack.
1099 SRC_HAPPY_OPTS          = +RTS -K2m -RTS
1100
1101 #
1102 # Alex
1103 #
1104 ALEX                    = @AlexCmd@
1105 ALEX_VERSION            = @AlexVersion@         
1106 #
1107 # Options to pass to Happy when we're going to compile the output with GHC
1108 #
1109 GHC_ALEX_OPTS           = -g
1110
1111 #
1112 # Haddock
1113
1114 HADDOCK                 = @HaddockCmd@
1115
1116 #
1117 # Options for compiling in different `ways'. 
1118
1119 # To configure up your own way, have a look at some of the standard ways
1120 # such as profiling, and create your own set of WAY_*_OPTS defs below.
1121 # After having done that, add your way string to WAYS, and after having
1122 # run the configure script, the different projects will add the new way
1123 # to the list of ways they support.
1124 #
1125
1126 #
1127 # Definitions of the different ways:
1128 #   
1129 #   * their name:
1130 #          - tag, e.g., p
1131 #          - description, e.g., profiling
1132 #   * what they mean to the driver:
1133 #          - WAY_p_HC_OPTS gives the list of command-line options
1134 #            to the driver.
1135 #
1136
1137 #
1138 # The ways currently defined.
1139 #
1140 ALL_WAYS=p t u s mp mg a b c d e f g h i j k l m n o A B
1141 USER_WAYS=a b c d e f g h j k l m n o A B
1142
1143 #
1144 # The following ways currently have treated specially, p u t mg,
1145 # as the driver script treats these guys specially and needs to carefully be told
1146 # about the options for these. Hence, we hide the required command line options
1147 # for these in the driver, as this is the only place they are needed.
1148
1149 # If you want to add to these default options, fill in the variables below:
1150
1151 # Way 'i':
1152 WAY_i_NAME=ILX
1153 WAY_i_HC_OPTS= -filx -fruntime-types
1154
1155 # Way 'p':
1156 WAY_p_NAME=profiling
1157 WAY_p_HC_OPTS= -prof
1158
1159 # Way 't':
1160 WAY_t_NAME=ticky-ticky profiling
1161 WAY_t_HC_OPTS= -ticky
1162
1163 # Way `u':
1164 WAY_u_NAME=unregisterized (using portable C only)
1165 WAY_u_HC_OPTS=-unreg
1166
1167 # Way `mp': 
1168 WAY_mp_NAME=parallel
1169 WAY_mp_HC_OPTS=-parallel
1170
1171 # Way `mg': 
1172 WAY_mg_NAME=GranSim
1173 WAY_mg_HC_OPTS=-gransim
1174
1175 #
1176 # These ways apply to the RTS only:
1177 #
1178
1179 # Way 'thr':
1180 WAY_thr_NAME=threaded
1181 WAY_thr_HC_OPTS=-optc-DTHREADED_RTS
1182
1183 # Way 'thr_p':
1184 WAY_thr_p_NAME=threaded profiled
1185 WAY_thr_p_HC_OPTS=-optc-DTHREADED_RTS -prof
1186
1187 # Way 'debug':
1188 WAY_debug_NAME=debug
1189 WAY_debug_HC_OPTS=-optc-DDEBUG
1190
1191 # Way 'debug_p':
1192 WAY_debug_p_NAME=debug profiled
1193 WAY_debug_p_HC_OPTS=-optc-DDEBUG -prof
1194
1195 # Way 'debug_u':
1196 WAY_debug_u_NAME=debug unregisterised
1197 WAY_debug_u_HC_OPTS=-optc-DDEBUG -unreg
1198
1199 # Way 'debug_t':
1200 WAY_debug_t_NAME=debug ticky-ticky profiling
1201 WAY_debug_t_HC_OPTS= -ticky -optc-DDEBUG
1202
1203 # Way 'thr_debug':
1204 WAY_thr_debug_NAME=threaded
1205 WAY_thr_debug_HC_OPTS=-optc-DTHREADED_RTS -optc-DDEBUG
1206
1207 # Way 'thr_debug_p':
1208 WAY_thr_debug_p_NAME=threaded
1209 WAY_thr_debug_p_HC_OPTS=-optc-DTHREADED_RTS -optc-DDEBUG -prof
1210
1211 # Way 'dyn': build dynamic shared libraries
1212 WAY_dyn_NAME=dyn
1213 WAY_dyn_HC_OPTS=-fPIC -dynamic
1214 WAY_dyn_LIB_TARGET=libHSrts-gcc661.so
1215
1216 # Way 'thr_dyn':
1217 WAY_thr_dyn_NAME=thr_dyn
1218 WAY_thr_dyn_HC_OPTS=-fPIC -dynamic -optc-DTHREADED_RTS
1219
1220 # Way 'thr_debug_dyn':
1221 WAY_thr_debug_dyn_NAME=thr_dyn
1222 WAY_thr_debug_dyn_HC_OPTS=-fPIC -dynamic -optc-DTHREADED_RTS -optc-DDEBUG
1223
1224 # Way 'debug_dyn':
1225 WAY_debug_dyn_NAME=thr_dyn
1226 WAY_debug_dyn_HC_OPTS=-fPIC -dynamic -optc-DDEBUG
1227
1228 #
1229 # Add user-way configurations here:
1230 #
1231 WAY_A_NAME=
1232 WAY_A_HC_OPTS=
1233
1234 WAY_B_NAME=
1235 WAY_B_HC_OPTS=
1236
1237 WAY_a_NAME=
1238 WAY_a_HC_OPTS=
1239
1240 WAY_b_NAME=
1241 WAY_b_HC_OPTS=
1242
1243 WAY_c_NAME=
1244 WAY_c_HC_OPTS=
1245
1246 WAY_d_NAME=
1247 WAY_d_HC_OPTS=
1248
1249 WAY_e_NAME=
1250 WAY_e_HC_OPTS=
1251
1252 WAY_f_NAME=
1253 WAY_f_HC_OPTS=
1254
1255 WAY_g_NAME=
1256 WAY_g_HC_OPTS=
1257
1258 WAY_h_NAME=
1259 WAY_h_HC_OPTS=
1260
1261 WAY_j_NAME=
1262 WAY_j_HC_OPTS=
1263
1264 WAY_k_NAME=
1265 WAY_k_HC_OPTS=
1266
1267 WAY_l_NAME=
1268 WAY_l_HC_OPTS=
1269
1270 WAY_m_NAME=
1271 WAY_m_HC_OPTS=
1272
1273 WAY_n_NAME=
1274 WAY_n_HC_OPTS=
1275
1276 WAY_o_NAME=
1277 WAY_o_HC_OPTS=
1278
1279 ################################################################################
1280 #
1281 #               31-bit-Int Core files
1282 #
1283 ################################################################################
1284
1285
1286 # It is possible to configure the compiler and prelude to support 31-bit
1287 # integers, suitable for a back-end and RTS using a tag bit on a 32-bit
1288 # architecture.  Currently the only useful output from this option is external Core
1289 # files.  The following additions to your build.mk will produce the
1290 # 31-bit core output.  Note that this is *not* just a library "way"; the
1291 # compiler must be built a special way too.
1292
1293 # GhcCppOpts +=-DWORD_SIZE_IN_BITS=31
1294 # GhcLibHcOpts +=-fext-core -fno-code -DWORD_SIZE_IN_BITS=31
1295 # GhcLibCppOpts += -DWORD_SIZE_IN_BITS=31
1296 # SplitObjs=NO
1297
1298 ################################################################################
1299 #
1300 #    Library configure arguments
1301 #
1302 ################################################################################
1303
1304 CONFIGURE_ARGS = @CONFIGURE_ARGS@
1305