Added comment about GNU coding standards/autoconf history
[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 GhcThreaded = $(if $(findstring thr,$(GhcRTSWays)),YES,NO)
361
362 # Option flags to pass to GHC when it's compiling modules in
363 # fptools/libraries.  Typically these are things like -O or
364 # -dcore-lint or -H32m.  The ones that are *essential* are wired into
365 # the build system.
366 #
367 #       -O is pretty desirable, otherwise no inlining of prelude
368 #               things (incl "+") happens when compiling with this compiler
369 #
370 #       -fgenerics switches on generation of support code for 
371 #               derivable type classes.  This is now off by default,
372 #               but we switch it on for the libraries so that we generate
373 #               the code in case someone importing wants it
374
375 GhcLibHcOpts=-O -Rghc-timing -fgenerics
376
377 # Win32 only: Enable the RTS and libraries to be built as DLLs
378 DLLized=@EnableWin32DLLs@
379
380 # Strip local symbols from libraries?  This can make the libraries smaller,
381 # but makes debugging somewhat more difficult.  Doesn't work with all ld's.
382 #
383 StripLibraries=NO
384
385 # These are the URL patterns that Haddock uses to generate the "Source
386 # File" links on each page.
387 CorePackageSourceURL = http://darcs.haskell.org/ghc-6.6/packages/$(PACKAGE)/%{FILE}
388 ExtraPackageSourceURL = http://darcs.haskell.org/packages/$(PACKAGE)/%{FILE}
389
390 # These are the packages required to be present in order to bootstrap GHC
391 # NB. must be synced with libraries/core-packages
392 CorePackages = base Cabal haskell98 readline regex-base regex-compat \
393                regex-posix parsec stm template-haskell unix Win32
394
395 # ----------------------------------------------------------------------------
396 # Object-file splitting
397 #
398 #       Set SplitObjs=YES or NO in your build.mk
399 #
400 #       Don't use -split-objs in in GhcLibHcOpts, because the build
401 #               system needs to do other special magic if you are
402 #               doing object-file splitting
403
404 # lazy test, so that $(GhcUnregisterised) can be set in build.mk
405 SplitObjs=$(strip $(if $(filter $(TargetArch_CPP),i386 x86_64 powerpc sparc),\
406                     $(if $(filter YES,$(BootingFromHC)),\
407                       NO,\
408                       $(if $(filter NO,$(GhcUnregisterised)),\
409                         YES,\
410                         NO)),\
411                     NO))
412
413 # Math library
414 LIBM=@LIBM@
415
416 # Build the ObjectIO ?
417 #
418 GhcLibsWithObjectIO=@GhcLibsWithObjectIO@
419
420 # .NET interop support?
421 #
422 DotnetSupport=@DotnetSupport@
423
424 # Build unix package?
425 #
426 GhcLibsWithUnix=@GhcLibsWithUnix@
427
428 # ----------------------------------------------------------------------------
429 # Options for GHC's RTS
430
431 # For an optimised RTS (you probably don't want to change these; we build
432 # a debugging RTS by default now.  Use -debug to get it).
433 GhcRtsHcOpts=-optc-O2
434 GhcRtsCcOpts=-fomit-frame-pointer
435
436 # Include the front panel code?  Needs GTK+.
437 GhcRtsWithFrontPanel = NO
438
439 # Include support for CPU performance counters via the PAPI library in the RTS?
440 # (PAPI: http://icl.cs.utk.edu/papi/)
441 GhcRtsWithPapi = NO
442 HavePapi = @HavePapi@
443
444 ################################################################################
445 #
446 #               nofib
447 #
448 #       nofib specific options
449 #
450 ################################################################################
451
452 WithNofibHc = $(GHC_INPLACE)
453
454 # NoFibSubDirs controls which set of tests should be run
455 # You can run one or more of
456 #       imaginary 
457 #       spectral
458 #       real
459 #       parallel
460 #       PRIVATE
461 #       PENDING
462 #       UNUSED
463 NoFibSubDirs = imaginary spectral real
464
465 # The different ways to build nofib. Default is just to mirror
466 # what is done for the ghc prelude libraries.
467 #
468 NoFibWays = $(GhcLibWays)
469
470 # Haskell compiler options for nofib
471 NoFibHcOpts = -O
472
473 # Number of times to run each program
474 NoFibRuns = 5
475
476 ################################################################################
477 #
478 #               Paths (see paths.mk)
479 #
480 ################################################################################
481
482 # Directory used by GHC (and possibly other tools) for storing
483 # temporary files.  If your TMPDIR isn't big enough, either override
484 # this in build.mk or set your environment variable "TMPDIR" to point
485 # to somewhere with more space.  (TMPDIR=. is a good choice).
486
487 # DEFAULT_TMPDIR isn't called TMPDIR because GNU make tends to
488 # override an environment variable with the value of the make variable
489 # of the same name (if it exists) when executing sub-processes, so
490 # setting the TMPDIR env var would have no effect in the build tree.
491
492 DEFAULT_TMPDIR          = /tmp
493 ifeq "$(TARGETPLATFORM)" "i386-unknown-cygwin32"
494 DEFAULT_TMPDIR          = /C/TEMP
495 endif
496 ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
497 DEFAULT_TMPDIR          = /C/TEMP
498 endif
499
500 # FPTOOLS_TOP: the top of the fptools hierarchy, absolute path.
501 # On Windows this is a c:/foo/bar style path.
502 FPTOOLS_TOP_ABS         = @hardtop@
503
504 # This gets used in the default docdir
505 PACKAGE_TARNAME = @PACKAGE_TARNAME@
506
507 BIN_DIST_NAME=ghc-$(ProjectVersion)
508 BIN_DIST_TOPDIR_REL=$(FPTOOLS_TOP)
509 BIN_DIST_TOPDIR_ABS=$(FPTOOLS_TOP_ABS)
510 BIN_DIST_DIR=$(BIN_DIST_TOPDIR_ABS)/$(BIN_DIST_NAME)
511 BIN_DIST_TARBALL=$(BIN_DIST_TOPDIR_REL)/$(BIN_DIST_NAME)-$(TARGETPLATFORM).tar.bz2
512
513 BIN_DIST_INST_DIR = $(FPTOOLS_TOP_ABS)/bindisttest/installed
514
515 # Definition of installation directories, we don't use half of these, but since
516 # the configure script has them on offer while passing through, we might as well
517 # set them. Note that we have to be careful, because the GNU coding standards
518 # have changed a bit over the course of time, and autoconf development reflects
519 # this.
520 #
521 # A little bit of history regarding autoconf and GNU coding standards, use this
522 # as a cheat-sheet for the stuff below:
523 #
524 # variable    | default < 2.60     | default >= 2.60
525 # ------------+--------------------+--------------------------------------
526 # exec_prefix | ${prefix}          | ${prefix}
527 # libdir      | ${exec_prefix}/lib | ${exec_prefix}/lib
528 # datarootdir | NONE!              | ${prefix}/share
529 # datadir     | ${prefix}/share    | ${datarootdir}
530 # infodir     | ${prefix}/info     | ${datarootdir}/info
531 # mandir      | ${prefix}/man      | ${datarootdir}/man
532 # docdir      | NONE!              | ${datarootdir}/doc/${PACKAGE_TARNAME}
533 # htmldir     | NONE!              | ${docdir}
534 # dvidir      | NONE!              | ${docdir}
535 # pdfdir      | NONE!              | ${docdir}
536 # psdir       | NONE!              | ${docdir}
537 #
538 # NOTE: The default e.g. ${docdir} above means that autoconf substitutes the
539 # string "${docdir}", not the value of docdir! This is crucial for the GNU
540 # coding standards.
541
542 prefix          := @prefix@
543
544 # New autoconf (>= 2.60?) make a configure with a --datarootdir=DIR flag.
545 # However, in order to support older autoconf's we don't use it.
546 # datarootdir is set lower down instead.
547 # But, as datadir is defined in terms of datarootdir, we also need to
548 # set it to the value (if any) that configure gives it here.
549 datarootdir     := @datarootdir@
550
551 exec_prefix     := @exec_prefix@
552 bindir          := @bindir@
553 datadir0        := @datadir@
554 libdir0         := @libdir@
555 includedir      := @includedir@
556 oldincludedir   := @oldincludedir@
557 mandir          := @mandir@
558
559 ifeq "$(Windows)" "YES"
560
561 ifeq "$(strip $(prefix))" ""
562 prefix          = /c/ghc
563 endif
564
565 # Hack: our directory layouts tend to be different on Windows, so
566 # hack around configure's bogus assumptions here.
567 datarootdir := $(prefix)
568 datadir     := $(prefix)
569 libdir      := $(prefix)
570
571 else
572
573 #
574 # Unix: override libdir and datadir to put ghc-specific stuff in
575 # a subdirectory with the version number included.
576 #
577 datarootdir := $(datadir0)
578 datadir     := $(datadir0)/ghc-$(ProjectVersion)
579 libdir      := $(libdir0)/ghc-$(ProjectVersion)
580
581 endif # Windows
582
583 headerdir := $(libdir)/include
584
585 # New autoconf (>= 2.60?) make a configure with --docdir=DIR etc flags.
586 # However, in order to support older autoconf's we don't use them.
587
588 #docdir    := @docdir@
589 #htmldir   := @htmldir@
590 #dvidir    := @dvidir@
591 #pdfdir    := @pdfdir@
592 #psdir     := @psdir@
593
594 docdir    := $(datarootdir)/doc/ghc
595 htmldir   := $(docdir)
596 dvidir    := $(docdir)
597 pdfdir    := $(docdir)
598 psdir     := $(docdir)
599
600 # Default place for putting interface files is $(libdir)
601 # (overriden for packages in package.mk)
602 ifacedir                = $(libdir)
603
604
605 # Default values for most of the above are only set if
606 # they weren't configured to anything in particular
607 # via the configure script. (i.e., we make no assumption
608 # that the autoconf-generated script will assign defaults
609 # to all of the above).
610 #
611 ifeq "$(strip $(exec_prefix))" ""
612 exec_prefix             = $(prefix)
613 endif
614 ifeq "$(strip $(bindir))" ""
615 bindir                  = $(exec_prefix)/bin
616 endif
617
618 #
619 # NOTE: by intention, libexecdir and libdir point to 
620 # the same place.
621 #  => Only way to override this is to set libexecdir= on the command line.
622 #     (NOTE: configure script setting is ignored).
623 libexecdir              = $(libdir)
624
625 ifeq "$(strip $(datadir))" ""
626 datadir         = $(prefix)/share
627 endif
628 ifeq "$(strip $(libdir))" ""
629 libdir          = $(exec_prefix)/lib
630 endif
631 ifeq "$(strip $(includedir))" ""
632 includedir      = $(prefix)/include
633 endif
634 ifeq "$(strip $(oldincludedir))" ""
635 oldincludedir   = /usr/include
636 endif
637 ifeq "$(strip $(mandir))" ""
638 mandir          = $(prefix)/man
639 endif
640
641 # This is a bit of a lie, as this is a wrapper rather than the program
642 # itself. However, it means that we don't have to worry about Windows
643 # and non-Windows having different extensions.
644 GHC_PKG_PROG = $(FPTOOLS_TOP_ABS)/$(GHC_PKG_DIR_REL)/ghc-pkg-inplace
645
646 #-----------------------------------------------------------------------------
647 # install configuration
648
649 #
650 # Set this to have files installed with a specific owner
651 #
652 INSTALL_OWNER =
653
654
655 # Set this to have files installed with a specific group
656 #
657 INSTALL_GROUP =
658
659 #
660 # Invocations of `install' for the four different classes
661 # of targets:
662 #
663 INSTALL_PROGRAM = $(INSTALL) -m 755
664 INSTALL_SCRIPT  = $(INSTALL) -m 755
665 INSTALL_SHLIB   = $(INSTALL) -m 755
666 INSTALL_DATA    = $(INSTALL) -m 644
667 INSTALL_HEADER  = $(INSTALL) -m 644
668 INSTALL_MAN     = $(INSTALL) -m 644
669 INSTALL_DIR     = $(MKDIRHIER)
670
671 # -----------------------------------------------------------------------------
672 # Utilities programs: flags 
673
674 # If you want to give any standard flags to pretty much any utility
675 # (see utils.mk for a complete list), by adding a line here
676 #
677 #       SRC_P_OPTS += ...
678 #
679 # where P is the utility. For example, to add -O to all Haskell
680 # compilations, 
681 #
682 #       SRC_HC_OPTS += -O
683
684 SRC_HC_OPTS += -H16m -O
685
686 # These flags make flex 8-bit
687 SRC_FLEX_OPTS   += -8
688
689 SRC_INSTALL_BIN_OPTS    += -s
690
691 # lint gets all CPP's flags too
692 SRC_LINT_OPTS           += -axz -DLINT $(SRC_CPP_OPTS)
693 WAY$(_way)_LINT_OPTS    += WAY$(_way)_CPP_OPTS
694
695 # Default fptools options for dllwrap.
696 SRC_BLD_DLL_OPTS += -mno-cygwin --target=i386-mingw32
697
698 # Flags for CPP when running GreenCard on .pgc files
699 GC_CPP_OPTS += -P -E -x c -traditional -D__GLASGOW_HASKELL__
700
701
702 ################################################################################
703 #
704 #       Layout of the source tree
705 #
706 ################################################################################
707
708 # Here we provide defines for the various directories in the source tree,
709 # so we can move things around more easily.  A define $(GHC_FOO_DIR_REL)
710 # indicates a directory relative to the top of the source tree, whereas
711 # $(GHC_FOO_DIR) is a directory relative to the current directory.
712 # $(GHC_FOO_DIR_ABS) is the absolute path to the directory.
713
714 GHC_UTILS_DIR_REL       = utils
715 GHC_INCLUDE_DIR_REL     = includes
716 GHC_COMPILER_DIR_REL    = compiler
717 GHC_RTS_DIR_REL         = rts
718 GHC_UTILS_DIR_REL       = utils
719 GHC_DRIVER_DIR_REL      = driver
720 GHC_COMPAT_DIR_REL      = compat
721
722 GHC_MKDEPENDC_DIR_REL   = $(GHC_UTILS_DIR_REL)/mkdependC
723 GHC_LTX_DIR_REL         = $(GHC_UTILS_DIR_REL)/ltx
724 GHC_RUNTEST_DIR_REL     = $(GHC_UTILS_DIR_REL)/runstdtest
725 GHC_LNDIR_DIR_REL       = $(GHC_UTILS_DIR_REL)/lndir
726 GHC_MKDIRHIER_DIR_REL   = $(GHC_UTILS_DIR_REL)/mkdirhier
727 GHC_DOCBOOK_DIR_REL     = $(GHC_UTILS_DIR_REL)/docbook
728 GHC_UNLIT_DIR_REL       = $(GHC_UTILS_DIR_REL)/unlit
729 GHC_HP2PS_DIR_REL       = $(GHC_UTILS_DIR_REL)/hp2ps
730 GHC_HSTAGS_DIR_REL      = $(GHC_UTILS_DIR_REL)/hasktags
731 GHC_HSC2HS_DIR_REL      = $(GHC_UTILS_DIR_REL)/hsc2hs
732 GHC_TOUCHY_DIR_REL      = $(GHC_UTILS_DIR_REL)/touchy
733 GHC_PKG_DIR_REL         = $(GHC_UTILS_DIR_REL)/ghc-pkg
734 GHC_GENPRIMOP_DIR_REL   = $(GHC_UTILS_DIR_REL)/genprimopcode
735 GHC_GENAPPLY_DIR_REL    = $(GHC_UTILS_DIR_REL)/genapply
736
737 GHC_MANGLER_DIR_REL     = $(GHC_DRIVER_DIR_REL)/mangler
738 GHC_SPLIT_DIR_REL       = $(GHC_DRIVER_DIR_REL)/split
739 GHC_SYSMAN_DIR_REL      = $(GHC_RTS_DIR_REL)/parallel
740
741 GHC_UTILS_DIR           = $(FPTOOLS_TOP)/$(GHC_UTILS_DIR_REL)
742 GHC_INCLUDE_DIR         = $(FPTOOLS_TOP)/$(GHC_INCLUDE_DIR_REL)
743 GHC_COMPILER_DIR        = $(FPTOOLS_TOP)/$(GHC_COMPILER_DIR_REL)
744 GHC_RTS_DIR             = $(FPTOOLS_TOP)/$(GHC_RTS_DIR_REL)
745 GHC_UTILS_DIR           = $(FPTOOLS_TOP)/$(GHC_UTILS_DIR_REL)
746 GHC_DRIVER_DIR          = $(FPTOOLS_TOP)/$(GHC_DRIVER_DIR_REL)
747 GHC_COMPAT_DIR          = $(FPTOOLS_TOP)/$(GHC_COMPAT_DIR_REL)
748
749 GHC_MKDEPENDC_DIR       = $(FPTOOLS_TOP)/$(GHC_MKDEPENDC_DIR_REL)
750 GHC_LTX_DIR             = $(FPTOOLS_TOP)/$(GHC_LTX_DIR_REL)
751 GHC_RUNTEST_DIR         = $(FPTOOLS_TOP)/$(GHC_RUNTEST_DIR_REL)
752 GHC_LNDIR_DIR           = $(FPTOOLS_TOP)/$(GHC_LNDIR_DIR_REL)
753 GHC_MKDIRHIER_DIR       = $(FPTOOLS_TOP)/$(GHC_MKDIRHIER_DIR_REL)
754 GHC_DOCBOOK_DIR         = $(FPTOOLS_TOP)/$(GHC_DOCBOOK_DIR_REL)
755 GHC_UNLIT_DIR           = $(FPTOOLS_TOP)/$(GHC_UNLIT_DIR_REL)
756 GHC_HP2PS_DIR           = $(FPTOOLS_TOP)/$(GHC_HP2PS_DIR_REL)
757 GHC_HSTAGS_DIR          = $(FPTOOLS_TOP)/$(GHC_HSTAGS_DIR_REL)
758 GHC_HSC2HS_DIR          = $(FPTOOLS_TOP)/$(GHC_HSC2HS_DIR_REL)
759 GHC_TOUCHY_DIR          = $(FPTOOLS_TOP)/$(GHC_TOUCHY_DIR_REL)
760 GHC_PKG_DIR             = $(FPTOOLS_TOP)/$(GHC_PKG_DIR_REL)
761 GHC_GENPRIMOP_DIR       = $(FPTOOLS_TOP)/$(GHC_GENPRIMOP_DIR_REL)
762 GHC_GENAPPLY_DIR        = $(FPTOOLS_TOP)/$(GHC_GENAPPLY_DIR_REL)
763
764 GHC_MANGLER_DIR         = $(FPTOOLS_TOP)/$(GHC_MANGLER_DIR_REL)
765 GHC_SPLIT_DIR           = $(FPTOOLS_TOP)/$(GHC_SPLIT_DIR_REL)
766 GHC_SYSMAN_DIR          = $(FPTOOLS_TOP)/$(GHC_SYSMAN_DIR_REL)
767
768 GHC_UTILS_DIR_ABS       = $(FPTOOLS_TOP_ABS)/$(GHC_UTILS_DIR_REL)
769 GHC_INCLUDE_DIR_ABS     = $(FPTOOLS_TOP_ABS)/$(GHC_INCLUDE_DIR_REL)
770 GHC_COMPILER_DIR_ABS    = $(FPTOOLS_TOP_ABS)/$(GHC_COMPILER_DIR_REL)
771 GHC_RTS_DIR_ABS         = $(FPTOOLS_TOP_ABS)/$(GHC_RTS_DIR_REL)
772 GHC_UTILS_DIR_ABS       = $(FPTOOLS_TOP_ABS)/$(GHC_UTILS_DIR_REL)
773 GHC_DRIVER_DIR_ABS      = $(FPTOOLS_TOP_ABS)/$(GHC_DRIVER_DIR_REL)
774 GHC_COMPAT_DIR_ABS      = $(FPTOOLS_TOP_ABS)/$(GHC_COMPAT_DIR_REL)
775
776 GHC_MKDEPENDC_DIR_ABS   = $(FPTOOLS_TOP_ABS)/$(GHC_MKDEPENDC_DIR_REL)
777 GHC_LTX_DIR_ABS         = $(FPTOOLS_TOP_ABS)/$(GHC_LTX_DIR_REL)
778 GHC_RUNTEST_DIR_ABS     = $(FPTOOLS_TOP_ABS)/$(GHC_RUNTEST_DIR_REL)
779 GHC_LNDIR_DIR_ABS       = $(FPTOOLS_TOP_ABS)/$(GHC_LNDIR_DIR_REL)
780 GHC_MKDIRHIER_DIR_ABS   = $(FPTOOLS_TOP_ABS)/$(GHC_MKDIRHIER_DIR_REL)
781 GHC_DOCBOOK_DIR_ABS     = $(FPTOOLS_TOP_ABS)/$(GHC_DOCBOOK_DIR_REL)
782 GHC_UNLIT_DIR           = $(FPTOOLS_TOP_ABS)/$(GHC_UNLIT_DIR_REL)
783 GHC_HP2PS_DIR_ABS       = $(FPTOOLS_TOP_ABS)/$(GHC_HP2PS_DIR_REL)
784 GHC_HSTAGS_DIR_ABS      = $(FPTOOLS_TOP_ABS)/$(GHC_HSTAGS_DIR_REL)
785 GHC_HSC2HS_DIR_ABS      = $(FPTOOLS_TOP_ABS)/$(GHC_HSC2HS_DIR_REL)
786 GHC_TOUCHY_DIR_ABS      = $(FPTOOLS_TOP_ABS)/$(GHC_TOUCHY_DIR_REL)
787 GHC_PKG_DIR_ABS         = $(FPTOOLS_TOP_ABS)/$(GHC_PKG_DIR_REL)
788 GHC_GENPRIMOP_DIR_ABS   = $(FPTOOLS_TOP_ABS)/$(GHC_GENPRIMOP_DIR_REL)
789 GHC_GENAPPLY_DIR_ABS    = $(FPTOOLS_TOP_ABS)/$(GHC_GENAPPLY_DIR_REL)
790
791 GHC_MANGLER_DIR_ABS     = $(FPTOOLS_TOP_ABS)/$(GHC_MANGLER_DIR_REL)
792 GHC_SYSMAN_DIR_ABS      = $(FPTOOLS_TOP_ABS)/$(GHC_SYSMAN_DIR_REL)
793 GHC_SPLIT_DIR_ABS       = $(FPTOOLS_TOP_ABS)/$(GHC_SPLIT_DIR_REL)
794
795 # -----------------------------------------------------------------------------
796 # Names of programs in the GHC tree
797 #
798 #      xxx_PGM          the name of an executable, without the path
799 #      xxx              the executable relative to the current dir
800
801 GHC_UNLIT_PGM           = unlit$(exeext)
802 GHC_HP2PS_PGM           = hp2ps
803 GHC_HSTAGS_PGM          = hasktags
804 GHC_HSC2HS_INPLACE_PGM  = hsc2hs-inplace
805 GHC_TOUCHY_PGM          = touchy$(exeext)
806 GHC_MANGLER_PGM         = ghc-asm
807 GHC_SPLIT_PGM           = ghc-split
808 GHC_SYSMAN_PGM          = SysMan
809 GHC_PKG_INPLACE_PGM     = ghc-pkg-inplace
810 GHC_GENPRIMOP_PGM       = genprimopcode
811 GHC_GENAPPLY_PGM        = genapply
812 GHC_MKDEPENDC_PGM       = mkdependC
813 GHC_LTX_PGM             = ltx
814 GHC_MKDIRHIER_PGM       = mkdirhier
815 GHC_LNDIR_PGM           = lndir
816 GHC_RUNTEST_PGM         = runstdtest
817
818 ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
819 GHC_CP                  = "xcopy /y"
820 GHC_PERL                = perl
821 else
822 GHC_CP                  = $(CP)
823 GHC_PERL                = $(PERL)
824 endif
825
826 UNLIT                   = $(GHC_UNLIT_DIR)/$(GHC_UNLIT_PGM)
827 HP2PS                   = $(GHC_HP2PS_DIR)/$(GHC_HP2PS_PGM)
828 HSTAGS                  = $(GHC_HSTAGS_DIR)/$(GHC_HSTAGS_PGM)
829 HSC2HS_INPLACE          = $(GHC_HSC2HS_DIR)/$(GHC_HSC2HS_INPLACE_PGM)
830 MANGLER                 = $(GHC_MANGLER_DIR)/$(GHC_MANGLER_PGM)
831 SPLIT                   = $(GHC_SPLIT_DIR)/$(GHC_SPLIT_PGM)
832 SYSMAN                  = $(GHC_SYSMAN_DIR)/$(GHC_SYSMAN_PGM)
833 GHC_PKG_INPLACE         = $(GHC_PKG_DIR)/$(GHC_PKG_INPLACE_PGM)
834 GENPRIMOP               = $(GHC_GENPRIMOP_DIR)/$(GHC_GENPRIMOP_PGM)
835 GENAPPLY                = $(GHC_GENAPPLY_DIR)/$(GHC_GENAPPLY_PGM)
836 MKDEPENDC               = $(GHC_MKDEPENDC_DIR)/$(GHC_MKDEPENDC_PGM)
837 LTX                     = $(GHC_LTX_DIR)/$(GHC_LTX_PGM)
838 MKDIRHIER               = $(GHC_MKDIRHIER_DIR)/$(GHC_MKDIRHIER_PGM)
839 LNDIR                   = $(GHC_LNDIR_DIR)/$(GHC_LNDIR_PGM)
840 RUNTEST                 = $(GHC_RUNTEST_DIR)/$(GHC_RUNTEST_PGM)
841
842 GENERATED_FILE  = chmod a-w
843 EXECUTABLE_FILE = chmod +x
844
845 #-----------------------------------------------------------------------------
846 # Haskell compilers and mkdependHS
847
848 # $(GHC), $(HBC) and $(NHC) point to installed versions of the relevant
849 # compilers, if available.
850 #
851 # $(HC) is a generic Haskell 98 compiler, set to $(GHC) by default.
852 # $(MKDEPENDHS) is the Haskell dependency generator (ghc -M).
853 #
854 # NOTE: Don't override $(GHC) in build.mk, use configure --with-ghc instead
855 # (because the version numbers have to be calculated).
856
857 GHC             = @WithGhc@
858 GhcDir          = $(dir $(GHC))
859
860 # Set to YES if $(GHC) has the readline package installed
861 GhcHasReadline  = @GhcHasReadline@
862
863 HBC             = @HBC@
864 NHC             = @NHC@
865
866 # Sometimes we want to invoke ghc from the build tree in different
867 # places (eg. it's handy to have a nofib & a ghc build in the same
868 # tree).  We can refer to "this ghc" as $(GHC_INPLACE):
869
870 GHC_INPLACE     = $(GHC_COMPILER_DIR)/ghc-inplace
871 GHC_STAGE1      = $(GHC_COMPILER_DIR)/stage1/ghc-inplace
872 GHC_STAGE2      = $(GHC_COMPILER_DIR)/stage2/ghc-inplace
873 GHC_STAGE3      = $(GHC_COMPILER_DIR)/stage3/ghc-inplace
874
875 ifneq "$(findstring YES, $(UseStage1) $(BootingFromHc))" ""
876
877 # We are using the stage1 compiler to compile Haskell code, set up
878 # some variables appropriately:
879 HC              =$(GHC_STAGE1)
880 MKDEPENDHS      =$(GHC_STAGE1)
881 GhcVersion      = @ProjectVersion@
882 GhcPatchLevel   = @ProjectPatchLevel@
883 # oops, these are wrong:
884 GhcMajVersion   = @GhcMajVersion@
885 GhcMinVersion   = @GhcMinVersion@
886
887 ghc_ge_601 = YES
888 ghc_ge_602 = YES
889 ghc_ge_603 = YES
890 ghc_ge_605 = YES
891 ghc_ge_607 = YES
892
893 else # not UseStage1 or BootingFromHc
894
895 HC              = @WithHc@
896 MKDEPENDHS      = $(GHC)
897 GhcVersion      = @GhcVersion@
898 GhcPatchLevel   = @GhcPatchLevel@
899 GhcMajVersion   = @GhcMajVersion@
900 GhcMinVersion   = @GhcMinVersion@
901
902 # Some useful GHC version predicates:
903 ghc_ge_601 = @ghc_ge_601@
904 ghc_ge_602 = @ghc_ge_602@
905 ghc_ge_603 = @ghc_ge_603@
906 ghc_ge_605 = @ghc_ge_605@
907 ghc_ge_607 = @ghc_ge_607@
908 endif
909
910 # Canonicalised ghc version number, used for easy (integer) version
911 # comparisons.  We must expand $(GhcMinVersion) to two digits by
912 # adding a leading zero if necessary:
913 ifneq "$(findstring $(GhcMinVersion), 0 1 2 3 4 5 6 7 8 9)" ""
914 GhcCanonVersion = $(GhcMajVersion)0$(GhcMinVersion)
915 else
916 GhcCanonVersion = $(GhcMajVersion)$(GhcMinVersion)
917 endif
918
919 #-----------------------------------------------------------------------------
920 # C compiler
921 #
922 # NB. Don't override $(WhatGccIsCalled) using build.mk,  re-configure using
923 # the flag --with-gcc=<blah> instead.  The reason is that the configure script
924 # needs to know which gcc you're using in order to perform its tests.
925
926 HaveGcc         = @HaveGcc@
927 UseGcc          = YES
928 WhatGccIsCalled = @WhatGccIsCalled@
929 GccVersion      = @GccVersion@
930 ifeq "$(strip $(HaveGcc))" "YES"
931 ifneq "$(strip $(UseGcc))"  "YES"
932   CC    = cc
933 else
934   CC    = $(WhatGccIsCalled)
935   GccDir = $(dir $(WhatGccIsCalled))
936 endif
937 endif
938
939 # default C compiler flags
940 SRC_CC_OPTS = @SRC_CC_OPTS@
941
942 ifeq "$(TARGETPLATFORM)" "ia64-unknown-linux"
943 SRC_CC_OPTS += -G0
944 endif
945
946 #-----------------------------------------------------------------------------
947 # GMP Library (version 2.0.x or above)
948 #
949 HaveLibGmp      = @HaveLibGmp@
950 LibGmp          = @LibGmp@
951
952 GMP_INCLUDE_DIRS=@GMP_INCLUDE_DIRS@
953 GMP_LIB_DIRS=@GMP_LIB_DIRS@
954
955 #-----------------------------------------------------------------------------
956 # GMP framework (Mac OS X)
957 #
958 HaveFrameworkGMP = @HaveFrameworkGMP@
959
960 #-----------------------------------------------------------------------------
961 # Mingwex Library
962 #
963 HaveLibMingwEx  = @HaveLibMingwEx@
964
965 #-----------------------------------------------------------------------------
966 # Flex (currently unused, could be moved to glafp-utils)
967
968 # FLEX                  = @LEX@
969 # Don't bother with -lfl, we define our own yywrap()s anyway.
970 # FLEX_LIB              = 
971 #WAS:FLEX_LIB           = @LEXLIB@
972
973 #-----------------------------------------------------------------------------
974 # Other standard (ha!) Unix utilities
975
976 AR                      = @ArCmd@
977 ArSupportsInput         = @ArSupportsInput@
978 # Yuckage: for ghc/utils/parallel -- todo: nuke this dependency!!
979 BASH                    = /usr/local/bin/bash
980
981 CONTEXT_DIFF            = @ContextDiffCmd@
982 CP                      = cp
983 CPP                     = @CPP@ @CPPFLAGS@
984 CTAGS                   = $(ETAGS)
985 #
986 # RAWCPP_FLAGS are the flags to give to cpp (viz, gcc -E) to persuade it to
987 # behave plausibly on Haskell sources.
988 #
989 RAWCPP_FLAGS            = -undef -traditional
990 FIND                    = @FindCmd@
991 SORT                    = @SortCmd@
992 INSTALL                 = @INSTALL@
993 #
994 # Sigh - the autoconf macro for INSTALL will subst a relative path to the fallback
995 # install-sh script (if chosen). This not terribly useful to us, so we convert
996 # it into an abs. path.
997
998 INSTALL                 := $(subst .././install-sh,$(FPTOOLS_TOP_ABS)/install-sh,$(INSTALL))
999 LATEX                   = latex
1000 HEVEA                   = hevea
1001 HACHA                   = hacha
1002 LN_S                    = @LN_S@
1003 MANMACROS               = -man
1004 MSMACROS                = -ms
1005 MV                      = mv
1006 NROFF                   = nroff
1007 PERL                    = @PerlCmd@
1008 PYTHON                  = @PythonCmd@
1009 PIC                     = pic
1010 PREPROCESSCMD           = $(CC) -E
1011 RANLIB                  = @RANLIB@
1012 RM                      = rm -f
1013 SED                     = @SedCmd@
1014 SHELL                   = /bin/sh
1015
1016 LD                      = @LdCmd@
1017
1018 # Some ld's support the -x flag and some don't, so the configure
1019 # script detects which we have and sets LdXFlag to "-x" or ""
1020 # respectively.
1021 LD_X                    = @LdXFlag@
1022
1023 # GNU ld supports input via a linker script, which is useful to avoid
1024 # overflowing command-line length limits.
1025 LdIsGNULd               = @LdIsGNULd@
1026
1027 #
1028 # In emergency situations, REAL_SHELL is used to perform shell commands
1029 # from within the ghc driver script, by scribbling the command line to
1030 # a temp file and then having $(REAL_SHELL) execute it. 
1031 #
1032 # The reason for having to do this is that overly long command lines
1033 # cause unnecessary trouble with some shells (e.g., /bin/sh on Solaris
1034 # 2.5.1), which is why this backdoor is provided. The situation of overly
1035 # long command lines is either encountered while doing `make boot' in compiler/, 
1036 # or when linking the compiler binary (`hsc'). 
1037 #
1038 # We do not use SHELL to execute long commands, as `make' will more than likely
1039 # override whatever setting you have in your environment while executing. 
1040
1041 # By default, REAL_SHELL is set equal to SHELL, which is not really a smart move
1042 # as it is SHELL that will show up the bogosity in the first place, but setting
1043 # it to anything else isn't really portable.
1044 #
1045 #  ====> If long command lines cause you trouble, invoke `ghc' (via `make' or otherwise)
1046 # with REAL_SHELL set to something else than /bin/sh, for instance, your favourite
1047 # command shell.
1048 #
1049 REAL_SHELL=$(SHELL)
1050 SIZE                    = size
1051 STRIP                   = strip
1052 TAR                     = @TarCmd@
1053 ZIP                     = zip
1054
1055 #
1056 # This is special to literate/, ToDo: add literate-specific
1057 # configure setup to literate/.
1058 #
1059 TBL                     = tbl
1060 TEX                     = tex
1061 TGRIND                  = tgrind
1062 TGRIND_HELPER           = /usr/local/lib/tgrind/tfontedpr # XXX
1063 TIB                     = tib
1064
1065 TIME                    = @TimeCmd@
1066 TROFF                   = troff
1067 UNAME                   = uname
1068
1069 # GTK+
1070 GTK_CONFIG = @GTK_CONFIG@
1071
1072 # Set this if you want to use Inno Setup to build a Windows installer
1073 # when you make a bindist
1074 ISCC                    =
1075
1076 #-----------------------------------------------------------------------------
1077 # DocBook XML stuff
1078
1079 XSLTPROC                = @XsltprocCmd@
1080 XMLLINT                 = @XmllintCmd@
1081 FOP                     = @FopCmd@
1082 XMLTEX                  = @XmltexCmd@
1083 PDFXMLTEX               = @PdfxmltexCmd@
1084 DVIPS                   = @DvipsCmd@
1085
1086 DIR_DOCBOOK_XSL         = @DIR_DOCBOOK_XSL@
1087
1088 XSLTPROC_LABEL_OPTS     = --stringparam toc.section.depth 3 \
1089                           --stringparam section.autolabel 1 \
1090                           --stringparam section.label.includes.component.label 1
1091
1092 #-----------------------------------------------------------------------------
1093 #               FPtools support software
1094
1095 BLD_DLL                 = dllwrap
1096
1097 #
1098 # .NET support software
1099 #
1100 ILX2IL                  = ilx2il
1101 ILASM                   = ilasm
1102
1103 #
1104 # ghc-pkg
1105 #
1106 GHC_PKG                 = @GhcPkgCmd@
1107
1108 #
1109 # GreenCard
1110 #
1111 GREENCARD               = @GreenCardCmd@
1112 GREENCARD_VERSION       = @GreenCardVersion@            
1113
1114 #
1115 # Happy
1116 #
1117 HAPPY                   = @HappyCmd@
1118 HAPPY_VERSION           = @HappyVersion@                
1119 #
1120 # Options to pass to Happy when we're going to compile the output with GHC
1121 #
1122 GHC_HAPPY_OPTS          = -agc
1123
1124 # Temp. to work around performance problems in the HEAD around 8/12/2003,
1125 # A Happy compiled with this compiler needs more stack.
1126 SRC_HAPPY_OPTS          = +RTS -K2m -RTS
1127
1128 #
1129 # Alex
1130 #
1131 ALEX                    = @AlexCmd@
1132 ALEX_VERSION            = @AlexVersion@         
1133 #
1134 # Options to pass to Happy when we're going to compile the output with GHC
1135 #
1136 GHC_ALEX_OPTS           = -g
1137
1138 #
1139 # Haddock
1140
1141 HADDOCK                 = @HaddockCmd@
1142
1143 #
1144 # Options for compiling in different `ways'. 
1145
1146 # To configure up your own way, have a look at some of the standard ways
1147 # such as profiling, and create your own set of WAY_*_OPTS defs below.
1148 # After having done that, add your way string to WAYS, and after having
1149 # run the configure script, the different projects will add the new way
1150 # to the list of ways they support.
1151 #
1152
1153 #
1154 # Definitions of the different ways:
1155 #   
1156 #   * their name:
1157 #          - tag, e.g., p
1158 #          - description, e.g., profiling
1159 #   * what they mean to the driver:
1160 #          - WAY_p_HC_OPTS gives the list of command-line options
1161 #            to the driver.
1162 #
1163
1164 #
1165 # The ways currently defined.
1166 #
1167 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
1168 USER_WAYS=a b c d e f g h j k l m n o A B
1169
1170 #
1171 # The following ways currently have treated specially, p u t mg,
1172 # as the driver script treats these guys specially and needs to carefully be told
1173 # about the options for these. Hence, we hide the required command line options
1174 # for these in the driver, as this is the only place they are needed.
1175
1176 # If you want to add to these default options, fill in the variables below:
1177
1178 # Way 'i':
1179 WAY_i_NAME=ILX
1180 WAY_i_HC_OPTS= -filx -fruntime-types
1181
1182 # Way 'p':
1183 WAY_p_NAME=profiling
1184 WAY_p_HC_OPTS= -prof
1185
1186 # Way 't':
1187 WAY_t_NAME=ticky-ticky profiling
1188 WAY_t_HC_OPTS= -ticky
1189
1190 # Way `u':
1191 WAY_u_NAME=unregisterized (using portable C only)
1192 WAY_u_HC_OPTS=-unreg
1193
1194 # Way `mp': 
1195 WAY_mp_NAME=parallel
1196 WAY_mp_HC_OPTS=-parallel
1197
1198 # Way `mg': 
1199 WAY_mg_NAME=GranSim
1200 WAY_mg_HC_OPTS=-gransim
1201
1202 #
1203 # These ways apply to the RTS only:
1204 #
1205
1206 # Way 'thr':
1207 WAY_thr_NAME=threaded
1208 WAY_thr_HC_OPTS=-optc-DTHREADED_RTS
1209
1210 # Way 'thr_p':
1211 WAY_thr_p_NAME=threaded profiled
1212 WAY_thr_p_HC_OPTS=-optc-DTHREADED_RTS -prof
1213
1214 # Way 'debug':
1215 WAY_debug_NAME=debug
1216 WAY_debug_HC_OPTS=-optc-DDEBUG
1217
1218 # Way 'debug_p':
1219 WAY_debug_p_NAME=debug profiled
1220 WAY_debug_p_HC_OPTS=-optc-DDEBUG -prof
1221
1222 # Way 'debug_u':
1223 WAY_debug_u_NAME=debug unregisterised
1224 WAY_debug_u_HC_OPTS=-optc-DDEBUG -unreg
1225
1226 # Way 'debug_t':
1227 WAY_debug_t_NAME=debug ticky-ticky profiling
1228 WAY_debug_t_HC_OPTS= -ticky -optc-DDEBUG
1229
1230 # Way 'thr_debug':
1231 WAY_thr_debug_NAME=threaded
1232 WAY_thr_debug_HC_OPTS=-optc-DTHREADED_RTS -optc-DDEBUG
1233
1234 # Way 'thr_debug_p':
1235 WAY_thr_debug_p_NAME=threaded
1236 WAY_thr_debug_p_HC_OPTS=-optc-DTHREADED_RTS -optc-DDEBUG -prof
1237
1238 # Way 'dyn': build dynamic shared libraries
1239 WAY_dyn_NAME=dyn
1240 WAY_dyn_HC_OPTS=-fPIC -dynamic
1241 WAY_dyn_LIB_TARGET=libHSrts-gcc661.so
1242
1243 # Way 'thr_dyn':
1244 WAY_thr_dyn_NAME=thr_dyn
1245 WAY_thr_dyn_HC_OPTS=-fPIC -dynamic -optc-DTHREADED_RTS
1246
1247 # Way 'thr_debug_dyn':
1248 WAY_thr_debug_dyn_NAME=thr_dyn
1249 WAY_thr_debug_dyn_HC_OPTS=-fPIC -dynamic -optc-DTHREADED_RTS -optc-DDEBUG
1250
1251 # Way 'debug_dyn':
1252 WAY_debug_dyn_NAME=thr_dyn
1253 WAY_debug_dyn_HC_OPTS=-fPIC -dynamic -optc-DDEBUG
1254
1255 #
1256 # Add user-way configurations here:
1257 #
1258 WAY_A_NAME=
1259 WAY_A_HC_OPTS=
1260
1261 WAY_B_NAME=
1262 WAY_B_HC_OPTS=
1263
1264 WAY_a_NAME=
1265 WAY_a_HC_OPTS=
1266
1267 WAY_b_NAME=
1268 WAY_b_HC_OPTS=
1269
1270 WAY_c_NAME=
1271 WAY_c_HC_OPTS=
1272
1273 WAY_d_NAME=
1274 WAY_d_HC_OPTS=
1275
1276 WAY_e_NAME=
1277 WAY_e_HC_OPTS=
1278
1279 WAY_f_NAME=
1280 WAY_f_HC_OPTS=
1281
1282 WAY_g_NAME=
1283 WAY_g_HC_OPTS=
1284
1285 WAY_h_NAME=
1286 WAY_h_HC_OPTS=
1287
1288 WAY_j_NAME=
1289 WAY_j_HC_OPTS=
1290
1291 WAY_k_NAME=
1292 WAY_k_HC_OPTS=
1293
1294 WAY_l_NAME=
1295 WAY_l_HC_OPTS=
1296
1297 WAY_m_NAME=
1298 WAY_m_HC_OPTS=
1299
1300 WAY_n_NAME=
1301 WAY_n_HC_OPTS=
1302
1303 WAY_o_NAME=
1304 WAY_o_HC_OPTS=
1305
1306 ################################################################################
1307 #
1308 #               31-bit-Int Core files
1309 #
1310 ################################################################################
1311
1312
1313 # It is possible to configure the compiler and prelude to support 31-bit
1314 # integers, suitable for a back-end and RTS using a tag bit on a 32-bit
1315 # architecture.  Currently the only useful output from this option is external Core
1316 # files.  The following additions to your build.mk will produce the
1317 # 31-bit core output.  Note that this is *not* just a library "way"; the
1318 # compiler must be built a special way too.
1319
1320 # GhcCppOpts +=-DWORD_SIZE_IN_BITS=31
1321 # GhcLibHcOpts +=-fext-core -fno-code -DWORD_SIZE_IN_BITS=31
1322 # GhcLibCppOpts += -DWORD_SIZE_IN_BITS=31
1323 # SplitObjs=NO
1324
1325 ################################################################################
1326 #
1327 #    Library configure arguments
1328 #
1329 ################################################################################
1330
1331 CONFIGURE_ARGS = @CONFIGURE_ARGS@
1332