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