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