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