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