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