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