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