[project @ 2006-01-04 12:49:38 by simonmar]
[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 # There is a section below for each project within the fptools suite
29 #
30 #       PLUS
31 #
32 # a section corresponding to each of the main .mk files 
33 # included by boilerplate.mk (see boilerplate.mk for a list).
34
35 ifneq "$(findstring 3.7, $(MAKE_VERSION))" ""
36 ifeq "$(findstring 3.79.1, $(MAKE_VERSION))" ""
37 $(error GNU make version 3.79.1 or later is required.)
38 endif
39 endif
40
41 ################################################################################
42 #
43 #               Project-wide platform variables
44 #
45 ################################################################################
46
47 # A "platform" is the GNU cpu-type/manufacturer/operating-system target machine
48 # specifier.  E.g. sparc-sun-solaris2
49 #
50 # Build  platform: the platform on which we are doing this build
51 # Host   platform: the platform on which these binaries will run
52 # Target platform: the platform for which this compiler will generate code
53 #
54 # We don't support build & host being different, because the build
55 # process creates binaries that are run during the build, and also
56 # installed.
57 #
58 # If host & target are different, then we are building a compiler
59 # which will generate intermediate .hc files to port to the target
60 # architecture for bootstrapping.  The libraries and stage 2 compiler
61 # will be built as HC files for the target system, and likely won't
62 # build on this host platform.
63 #
64 # An important invariant is that for any piece of source code, the
65 # platform on which the code is going to run is the HOST platform,
66 # and the platform on which we are building is the BUILD platform.
67 # Additionally for the compiler, the platform this compiler will
68 # generate code for is the TARGET.  TARGET is not meaningful outside
69 # the compiler sources.
70 #
71 # Guidelines for when to use HOST vs. TARGET:
72 #
73 #  - In the build system (Makefile, foo.mk), normally we should test
74 #    $(HOSTPLATFORM).  There are some cases (eg. installation), where
75 #    we expect $(HOSTPLATFORM)==$(TARGETPLATFORM), so in those cases it
76 #    doesn't matter which is used.
77 #
78 #  - In the compiler itself, we should test HOST or TARGET depending
79 #    on whether the conditional relates to the code being generated, or
80 #    the platform on which the compiler is running.  See the section
81 #    on "Coding Style" in the commentary for more details.
82 #
83 #  - In all other code, we should be testing HOST only.
84 #
85 # NOTE: cross-compiling is not well supported by the build system.
86 # You have to do a lot of work by hand to cross compile: see the
87 # section on "Porting GHC" in the Building Guide.
88
89 HOSTPLATFORM                    = @HostPlatform@
90 TARGETPLATFORM                  = @TargetPlatform@
91 BUILDPLATFORM                   = @BuildPlatform@
92
93 # Hack alert:
94 # in one or two places, we need to get at the OS version (major and
95 # perhaps even minor), HostOS_Full is the OS name reported by
96 # AC_CANONICAL_SYSTEM.
97 #
98 HostPlatform_CPP                = @HostPlatform_CPP@
99 HostArch_CPP                    = @HostArch_CPP@
100 HostOS_CPP                      = @HostOS_CPP@
101 HostOS_Full                     = @HostOS_Full@
102 HostVendor_CPP                  = @HostVendor_CPP@
103
104 TargetPlatform_CPP              = @TargetPlatform_CPP@
105 TargetArch_CPP                  = @TargetArch_CPP@
106 TargetOS_CPP                    = @TargetOS_CPP@
107 TargetVendor_CPP                = @TargetVendor_CPP@
108
109 BuildPlatform_CPP               = @BuildPlatform_CPP@
110 BuildArch_CPP                   = @BuildArch_CPP@
111 BuildOS_CPP                     = @BuildOS_CPP@
112 BuildVendor_CPP                 = @BuildVendor_CPP@
113
114 @HostPlatform_CPP@_HOST           = 1
115 @TargetPlatform_CPP@_TARGET       = 1
116 @BuildPlatform_CPP@_BUILD         = 1
117
118 @HostArch_CPP@_HOST_ARCH          = 1
119 @TargetArch_CPP@_TARGET_ARCH      = 1
120 @BuildArch_CPP@_BUILD_ARCH        = 1
121
122 @HostOS_CPP@_HOST_OS              = 1
123 @TargetOS_CPP@_TARGET_OS          = 1
124 @BuildOS_CPP@_BUILD_OS            = 1
125
126 @HostVendor_CPP@_HOST_VENDOR      = 1
127 @TargetVendor_CPP@_TARGET_VENDOR  = 1
128 @BuildVendor_CPP@_BUILD_VENDOR    = 1
129
130 # Leading underscores on symbol names in object files
131 # Valid options: YES/NO
132 #
133 LeadingUnderscore=@LeadingUnderscore@
134
135 # Pin a suffix on executables? If so, what (Windows only).
136 exeext=@exeext@
137
138 # Windows=YES if on a Windows platform
139 ifneq "$(findstring $(HostOS_CPP), mingw32 cygwin32)" ""
140 Windows=YES
141 else
142 Windows=NO
143 endif
144
145 ################################################################################
146 #
147 #               project-wide flags
148 #
149 #       Set of options applicable to all fptools projects
150 #
151 ################################################################################
152
153 # BootingFromHc - build GHC and the libraries from .hc files?
154 BootingFromHc = @BootingFromHc@
155
156 # BootingFromUnregisterisedHc - treat .hc files as containing unregisterised
157 # rather than registerised code, i.e., disable the mangler?
158 BootingFromUnregisterisedHc = @BootingFromUnregisterisedHc@
159
160 # Build Order: we build Happy, Haddock and Alex before GHC if they are
161 # in this source tree, just in case our GHC build depends on these
162 # local builds rather than installed versions of the tools.
163 #
164 # Build the libs first if we're bootstrapping from .hc files.
165 ifeq "$(BootingFromHc)" "YES"
166 AllProjects = glafp-utils happy alex haddock libraries hslibs ghc greencard hdirect hood nofib docs
167 else
168 AllProjects = glafp-utils happy alex haddock ghc libraries hslibs greencard hdirect hood nofib docs
169 endif
170
171 #
172 # (OPTIONAL) set ProjectsToBuild to a list of projects to be built.  If this
173 # list is empty, then all projects present in the source tree will be built.
174 #
175 ProjectsToBuild =
176
177 #
178 # set ProjectsDontInstall to a list of projects which are normally built but
179 # not installed.
180 #
181 ProjectsDontInstall = glafp-utils nofib
182
183 #
184 # Should the various project tests directories be built?
185 #
186 IncludeTestDirsInBuild=NO
187
188 #
189 # Should the various project example directories be built?
190 #
191 IncludeExampleDirsInBuild=NO
192
193 #
194 # Which ways should DocBook XML documents be built?
195 # options are: dvi ps pdf html chm HxS
196 #
197 XMLDocWays=
198
199 ################################################################################
200 #
201 #               GHC project
202
203 #       Set of (configurable) options needed by the ghc tree
204 #       plus their default options (if any).
205 #
206 ################################################################################
207
208 #---------------------------------------------------------------
209 #
210 # Variables that control how the compiler itself is built
211 #
212 #---------------------------------------------------------------
213
214 # The compiler used to build GHC is $(GHC).  To change the actual compiler
215 # used, re-configure with --with-ghc=<path-to-ghc>.
216
217 # Extra ways in which to build the compiler (for example, you might want to
218 # build a profiled compiler so you can see where it spends its time)
219 GhcCompilerWays=
220
221 # Extra option flags to pass to the compiler that compiles the compiler
222 # (Ones that are essential are wired into ghc/compiler/Makefile)
223 # Typical options to use here:
224 #
225 #       -DDEBUG         include debugging code and assertions (will make the
226 #                       compiler slower and produce debugging output, but useful
227 #                       for development)
228 #
229 #       -dcore-lint     check the types after every pass of the compiler;
230 #                       a pretty strong internal check of the compiler being
231 #                       used to compile GHC.  Useful when bootstrapping.
232 GhcHcOpts=-Rghc-timing
233
234 # Extra options added to specific stages of the compiler bootstrap.
235 # These are placed later on the command line, and may therefore
236 # override options from $(GhcHcOpts).
237 GhcStage1HcOpts=
238 GhcStage2HcOpts=
239 GhcStage3HcOpts=
240
241 # Build a compiler that will build *unregisterised* libraries and
242 # binaries by default.  Unregisterised code is supposed to compile and
243 # run without any support for architecture-specific assembly mangling,
244 # register assignment or tail-calls, and is therefore a good way to get
245 # started when porting GHC to new architectures.
246 #
247 # If this is set to NO, you can still use the unregisterised way
248 # (way 'u') to get unregisterised code, but the default way will be
249 # registerised.
250 #
251 # NOTE: the stage1 compiler will be a registerised binary (assuming
252 # the compiler you build with is generating registerised binaries), but
253 # the stage2 compiler will be an unregisterised binary.
254 #
255 GhcUnregisterised=NO
256
257 # Build a compiler with a native code generator backend
258 # (as well as a C backend)
259 #
260 # Target platforms supported:
261 #   i386, powerpc
262 #   sparc has bitrotted
263 #   AIX is not supported 
264 ArchSupportsNCG=$(strip $(patsubst $(HostArch_CPP), YES, $(findstring $(HostArch_CPP), i386 x86_64 powerpc)))
265 OsSupportsNCG=$(strip $(patsubst $(HostOS_CPP), YES, $(patsubst aix,,$(HostOS_CPP))))
266
267 ifeq "$(OsSupportsNCG)$(ArchSupportsNCG)" "YESYES"
268 GhcWithNativeCodeGen=YES
269 else
270 GhcWithNativeCodeGen=NO
271 endif
272
273 # Include support for generating Java
274 GhcWithJavaGen=NO
275
276 HaveLibDL = @HaveLibDL@
277
278 # Whether to include GHCi in the compiler.  Depends on whether the RTS linker
279 # has support for this OS/ARCH combination.
280
281 OsSupportsGHCi=$(strip $(patsubst $(HostOS_CPP), YES, $(findstring $(HostOS_CPP), mingw32 cygwin32 linux solaris2 freebsd netbsd openbsd darwin)))
282 ArchSupportsGHCi=$(strip $(patsubst $(HostArch_CPP), YES, $(findstring $(HostArch_CPP), i386 x86_64 powerpc powerpc64 sparc sparc64)))
283
284 ifeq "$(OsSupportsGHCi)$(ArchSupportsGHCi)" "YESYES"
285 GhcWithInterpreter=YES
286 else 
287 GhcWithInterpreter=NO
288 endif
289
290 #
291 # Building various ways?
292 # (right now, empty if not).
293 BuildingParallel=$(subst mp,YES,$(filter mp,$(WAYS)))
294 BuildingGranSim=$(subst mg,YES,$(filter mg,$(WAYS)))
295
296 #------------------------------------------------------------------------------
297 # Options for Libraries
298
299 # What extra ways to build the libraries in
300 # In addition to the normal sequential way, the default is to also build
301 # profiled prelude libraries.
302 # When booting from .hc files, turn this off.
303 ifeq "$(BootingFromHc)" "YES"
304 GhcLibWays=
305 else
306 GhcLibWays=p
307 endif
308
309 # In addition, the RTS is built in some further variations.  Ways that
310 # make sense here:
311
312 #   thr         : threaded
313 #   thr_p       : threaded profiled
314 #   debug       : debugging (compile with -g for the C compiler, and -DDEBUG)
315 #   debug_p     : debugging profiled
316 #   debug_u     : debugging unregisterised
317 #   thr_debug   : debugging threaded
318 #   thr_debug_p : debugging threaded profiled
319 #
320 ifeq "$(BootingFromHc)" "YES"
321 GhcRTSWays=
322 else
323 GhcRTSWays=thr thr_p debug thr_debug
324 endif
325
326 # Option flags to pass to GHC when it's compiling modules in
327 # fptools/libraries.  Typically these are things like -O or
328 # -dcore-lint or -H32m.  The ones that are *essential* are wired into
329 # the build system.
330 #
331 #       -O is pretty desirable, otherwise no inlining of prelude
332 #               things (incl "+") happens when compiling with this compiler
333 #
334 #       -fgenerics switches on generation of support code for 
335 #               derivable type classes.  This is now off by default,
336 #               but we switch it on for the libraries so that we generate
337 #               the code in case someone importing wants it
338
339 GhcLibHcOpts=-O -Rghc-timing -fgenerics
340
341 # Win32 only: Enable the RTS and libraries to be built as DLLs
342 DLLized=@EnableWin32DLLs@
343
344 # Strip local symbols from libraries?  This can make the libraries smaller,
345 # but makes debugging somewhat more difficult.  Doesn't work with all ld's.
346 #
347 StripLibraries=NO
348
349
350 # ----------------------------------------------------------------------------
351 # Object-file splitting
352 #
353 #       Set SplitObjs=YES or NO in your build.mk
354 #
355 #       Don't use -split-objs in in GhcLibHcOpts, because the build
356 #               system needs to do other special magic if you are
357 #               doing object-file splitting
358 ifneq "$(findstring $(HostArch_CPP), i386 x86_64 powerpc sparc)" ""
359 SplitObjs=YES
360 else
361 SplitObjs=NO
362 endif
363
364 # Don't split object files for libs if we're building DLLs, or booting from
365 # .hc files.
366 ifeq "$(DLLized)" "YES"
367 SplitObjs=NO
368 endif
369 ifeq "$(BootingFromHc)" "YES"
370 SplitObjs=NO
371 endif
372 ifeq "$(GhcUnregisterised)" "YES"
373 SplitObjs=NO
374 endif
375 ifeq "$(TargetArch_CPP)" "ia64"
376 SplitObjs=NO
377 endif
378
379 # ----------------------------------------------------------------------------
380 # Options for GHC's RTS
381
382 # For an optimised RTS (you probably don't want to change these; we build
383 # a debugging RTS by default now.  Use -debug to get it).
384 GhcRtsHcOpts=-optc-O2
385 GhcRtsCcOpts=-fomit-frame-pointer
386
387 # Include the front panel code?  Needs GTK+.
388 GhcRtsWithFrontPanel = NO
389
390 ################################################################################
391 #
392 # libraries project
393 #
394 ################################################################################
395
396 # Build the Haskell Readline bindings?
397 #
398 GhcLibsWithReadline=@GhcLibsWithReadline@
399
400 # Libraries needed for linking with readline
401 LibsReadline=@LibsReadline@
402
403 # Include path to readline.h
404 # (no path == in standard include path)
405 #
406 ReadlineIncludePath=
407
408 # Math library
409 LIBM=@LIBM@
410
411 # Build the ObjectIO ?
412 #
413 GhcLibsWithObjectIO=@GhcLibsWithObjectIO@
414
415 # .NET interop support?
416 #
417 DotnetSupport=@DotnetSupport@
418
419 # Build unix package?
420 #
421 GhcLibsWithUnix=@GhcLibsWithUnix@
422
423 ################################################################################
424 #
425 #               happy project
426 #
427 #       Happy specific options
428 #
429 ################################################################################
430
431 # The compiler you'd like to use to compile Happy
432 WithHappyHc = @WithHc@
433
434 # HappyHcOpts gives the flags to pass to the Haskell compiler used
435 #             to compile the Happy sources with.
436 #
437 HappyHcOpts = -O
438
439 ################################################################################
440 #
441 #               haggis project
442 #
443 #       Haggis specific options
444 #
445 ################################################################################
446
447 ################################################################################
448 #
449 #               greencard project
450 #
451 #       GreenCard specific options
452 #
453 ################################################################################
454
455 ################################################################################
456 #
457 #               nofib project
458 #
459 #       nofib specific options
460 #
461 ################################################################################
462
463 WithNofibHc = $(GHC_INPLACE)
464
465 # NoFibSubDirs controls which set of tests should be run
466 # You can run one or more of
467 #       imaginary 
468 #       spectral
469 #       real
470 #       parallel
471 #       PRIVATE
472 #       PENDING
473 #       UNUSED
474 NoFibSubDirs = imaginary spectral real
475
476 # The different ways to build nofib. Default is just to mirror
477 # what is done for the ghc prelude libraries.
478 #
479 NoFibWays = $(GhcLibWays)
480
481 # Haskell compiler options for nofib
482 NoFibHcOpts = -O
483
484 # Number of times to run each program
485 NoFibRuns = 5
486
487 # ==============================================================================
488 #
489 #                       END OF PROJECT-SPECIFIC STUFF
490 #
491 #               Now come the generic configuration options
492 #
493 # ==============================================================================
494
495 ################################################################################
496 #
497 #               Paths (see paths.mk)
498 #
499 ################################################################################
500
501 # Directory used by GHC (and possibly other tools) for storing
502 # temporary files.  If your TMPDIR isn't big enough, either override
503 # this in build.mk or set your environment variable "TMPDIR" to point
504 # to somewhere with more space.  (TMPDIR=. is a good choice).
505
506 # DEFAULT_TMPDIR isn't called TMPDIR because GNU make tends to
507 # override an environment variable with the value of the make variable
508 # of the same name (if it exists) when executing sub-processes, so
509 # setting the TMPDIR env var would have no effect in the build tree.
510
511 DEFAULT_TMPDIR          = /tmp
512 ifeq "$(TARGETPLATFORM)" "i386-unknown-cygwin32"
513 DEFAULT_TMPDIR          = C:/TEMP
514 endif
515 ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
516 DEFAULT_TMPDIR          = C:/TEMP
517 endif
518
519 # FPTOOLS_TOP: the top of the fptools hierarchy, absolute path. (POSIX / unix-style path).
520 FPTOOLS_TOP_ABS         = @hardtop@
521 # The platform specific version of 'hardtop'.
522 FPTOOLS_TOP_ABS_PLATFORM = @hardtop_plat@
523
524 #
525 # Installation directories, we don't use half of these,
526 # but since the configure script has them on offer while
527 # passing through, we might as well set them.
528
529 prefix                  = @prefix@
530 exec_prefix             = @exec_prefix@
531 bindir                  = @bindir@
532 datadir0                = @datadir@
533 libdir0                 = @libdir@
534 includedir              = @includedir@
535 oldincludedir           = @oldincludedir@
536 mandir                  = @mandir@
537
538 ifeq "$(Windows)" "YES"
539
540 ifeq "$(strip $(prefix))" ""
541 prefix          = c:/ghc
542 endif
543
544 # Hack: our directory layouts tend to be different on Windows, so
545 # hack around configure's bogus assumptions here.
546 datadir         = $(prefix)
547 libdir          = $(prefix)
548
549 else
550
551 #
552 # Unix: override libdir and datadir to put project-specific stuff in
553 # a subdirectory with the version number included.
554 #
555 libdir     = $(if $(ProjectNameShort),$(libdir0)/$(ProjectNameShort)-$(ProjectVersion),$(libdir0))
556 datadir    = $(if $(ProjectNameShort),$(datadir0)/$(ProjectNameShort)-$(ProjectVersion),$(datadir0))
557
558 endif # Windows
559
560 # Default place for putting interface files is $(libdir)
561 # (overriden for packages in package.mk)
562 ifacedir                = $(libdir)
563
564
565 # Default values for most of the above are only set if
566 # they weren't configured to anything in particular
567 # via the configure script. (i.e., we make no assumption
568 # that the autoconf-generated script will assign defaults
569 # to all of the above).
570 #
571 ifeq "$(strip $(exec_prefix))" ""
572 exec_prefix             = $(prefix)
573 endif
574 ifeq "$(strip $(bindir))" ""
575 bindir                  = $(exec_prefix)/bin
576 endif
577
578 #
579 # NOTE: by intention, libexecdir and libdir point to 
580 # the same place.
581 #  => Only way to override this is to set libexecdir= on the command line.
582 #     (NOTE: configure script setting is ignored).
583 libexecdir              = $(libdir)
584
585 ifeq "$(strip $(datadir))" ""
586 datadir         = $(prefix)/share
587 endif
588 ifeq "$(strip $(libdir))" ""
589 libdir          = $(exec_prefix)/lib
590 endif
591 ifeq "$(strip $(includedir))" ""
592 includedir      = $(prefix)/include
593 endif
594 ifeq "$(strip $(oldincludedir))" ""
595 oldincludedir   = /usr/include
596 endif
597 ifeq "$(strip $(mandir))" ""
598 mandir          = $(prefix)/man
599 endif
600
601 #-----------------------------------------------------------------------------
602 # install configuration
603
604 #
605 # Set this to have files installed with a specific owner
606 #
607 INSTALL_OWNER =
608
609
610 # Set this to have files installed with a specific group
611 #
612 INSTALL_GROUP =
613
614 #
615 # Invocations of `install' for the four different classes
616 # of targets:
617 #
618 INSTALL_PROGRAM = $(INSTALL) -m 755
619 INSTALL_SCRIPT  = $(INSTALL) -m 755
620 INSTALL_SHLIB   = $(INSTALL) -m 755
621 INSTALL_DATA    = $(INSTALL) -m 644
622 INSTALL_DIR     = $(MKDIRHIER)
623
624 # -----------------------------------------------------------------------------
625 # Utilities programs: flags 
626
627 # If you want to give any standard flags to pretty much any utility
628 # (see utils.mk for a complete list), by adding a line here
629 #
630 #       SRC_P_OPTS += ...
631 #
632 # where P is the utility. For example, to add -O to all Haskell
633 # compilations, 
634 #
635 #       SRC_HC_OPTS += -O
636
637 SRC_HC_OPTS += -H16m -O
638
639 # These flags make flex 8-bit
640 SRC_FLEX_OPTS   += -8
641
642 SRC_INSTALL_BIN_OPTS    += -s
643
644 # lint gets all CPP's flags too
645 SRC_LINT_OPTS           += -axz -DLINT $(SRC_CPP_OPTS)
646 WAY$(_way)_LINT_OPTS    += WAY$(_way)_CPP_OPTS
647
648 # Default fptools options for dllwrap.
649 SRC_BLD_DLL_OPTS += -mno-cygwin --target=i386-mingw32
650
651 # Flags for CPP when running GreenCard on .pgc files
652 GC_CPP_OPTS += -P -E -x c -traditional -D__GLASGOW_HASKELL__
653
654
655 ################################################################################
656 #
657 #               Utilities programs: where to find them
658 #
659 ################################################################################
660
661 #-----------------------------------------------------------------------------
662 # FPtools Utility locations
663
664 # By default, the various utils needed to be build ghc and chums
665 # is set up to point to the utils/ directory. Define here the
666 # path prefix for the utilities. Notice that it's a prefix with
667 # a trailing slash, so that it can be concatenated directly on
668 # front of a program name; if it's not set then we just look
669 # along the shell's $(PATH)
670 #
671 # If instead you want to use installed or your own versions of these,
672 # override the various *_PREFIX in build.mk, i.e., having the following
673 # in build.mk:
674 #
675 #   MKDEPENDC_PREFIX=
676 #
677 # will force `make' to rummage around in your PATH to find `mkdependC' (not
678 # sure it would need it in the first place, but still).
679 #
680 GLAFP_UTILS             = $(FPTOOLS_TOP)/glafp-utils
681
682 SCRIPT_PREFIX           = $(GLAFP_UTILS)/scripts/
683 MKDEPENDC_PREFIX        = $(GLAFP_UTILS)/mkdependC/
684 LTX_PREFIX              = $(GLAFP_UTILS)/ltx/
685 RUNTEST_PREFIX          = $(GLAFP_UTILS)/runstdtest/
686 VERBATIM_PREFIX         = $(GLAFP_UTILS)/verbatim/
687 SGMLVERB_PREFIX         = $(GLAFP_UTILS)/sgmlverb/
688 ETAGS_PREFIX            = $(GLAFP_UTILS)/etags/
689 LNDIR_PREFIX            = $(GLAFP_UTILS)/lndir/
690 MKDIRHIER_PREFIX        = $(GLAFP_UTILS)/mkdirhier/
691 DOCBOOK_PREFIX          = $(GLAFP_UTILS)/docbook/
692
693 HADDOCK_PREFIX          = $(FPTOOLS_TOP)/haddock/
694
695 LITERATE_PREFIX         = $(FPTOOLS_TOP)/literate/
696
697 UNLIT_PREFIX            = $(FPTOOLS_TOP)/ghc/utils/unlit/
698 HP2PS_PREFIX            = $(FPTOOLS_TOP)/ghc/utils/hp2ps/
699 HSTAGS_PREFIX           = $(FPTOOLS_TOP)/ghc/utils/hasktags/
700 HSC2HS_PREFIX           = $(FPTOOLS_TOP)/ghc/utils/hsc2hs/
701
702 #-----------------------------------------------------------------------------
703 # Haskell compilers and mkdependHS
704
705 # $(GHC), $(HBC) and $(NHC) point to installed versions of the relevant
706 # compilers, if available.
707 #
708 # $(HC) is a generic Haskell 98 compiler, set to $(GHC) by default.
709 # $(MKDEPENDHS) is the Haskell dependency generator (ghc -M).
710 #
711 # NOTE: Don't override $(GHC) in build.mk, use configure --with-ghc instead
712 # (because the version numbers have to be calculated).
713
714 GHC             = @WithGhc@
715 GhcDir          = $(dir $(GHC))
716 GhcVersion      = @GhcVersion@
717 GhcMajVersion   = @GhcMajVersion@
718 GhcMinVersion   = @GhcMinVersion@
719 GhcPatchLevel   = @GhcPatchLevel@
720
721 # Canonicalised ghc version number, used for easy (integer) version
722 # comparisons.  We must expand $(GhcMinVersion) to two digits by
723 # adding a leading zero if necessary:
724 ifneq "$(findstring $(GhcMinVersion), 0 1 2 3 4 5 6 7 8 9)" ""
725 GhcCanonVersion = $(GhcMajVersion)0$(GhcMinVersion)
726 else
727 GhcCanonVersion = $(GhcMajVersion)$(GhcMinVersion)
728 endif
729
730 HBC             = @HBC@
731 NHC             = @NHC@
732
733 HC              = @WithHc@
734 MKDEPENDHS      = $(GHC)
735
736 # Sometimes we want to invoke ghc from the build tree in different
737 # projects (eg. it's handy to have a nofib & a ghc build in the same
738 # tree).  We can refer to "this ghc" as $(GHC_INPLACE):
739
740 GHC_INPLACE     = $(FPTOOLS_TOP)/ghc/compiler/ghc-inplace
741 GHC_STAGE1      = $(FPTOOLS_TOP)/ghc/compiler/stage1/ghc-inplace
742 GHC_STAGE2      = $(FPTOOLS_TOP)/ghc/compiler/stage2/ghc-inplace
743 GHC_STAGE3      = $(FPTOOLS_TOP)/ghc/compiler/stage3/ghc-inplace
744
745 #-----------------------------------------------------------------------------
746 # C compiler
747 #
748 # NB. Don't override $(WhatGccIsCalled) using build.mk,  re-configure using
749 # the flag --with-gcc=<blah> instead.  The reason is that the configure script
750 # needs to know which gcc you're using in order to perform its tests.
751
752 HaveGcc         = @HaveGcc@
753 UseGcc          = YES
754 WhatGccIsCalled = @WhatGccIsCalled@
755 GccVersion      = @GccVersion@
756 ifeq "$(strip $(HaveGcc))" "YES"
757 ifneq "$(strip $(UseGcc))"  "YES"
758   CC    = cc
759 else
760   CC    = $(WhatGccIsCalled)
761   GccDir = $(dir $(WhatGccIsCalled))
762 endif
763 endif
764
765 # default C compiler flags
766 SRC_CC_OPTS = @SRC_CC_OPTS@
767
768 ifeq "$(TARGETPLATFORM)" "ia64-unknown-linux"
769 SRC_CC_OPTS += -G0
770 endif
771
772 #-----------------------------------------------------------------------------
773 # GMP Library (version 2.0.x or above)
774 #
775 HaveLibGmp      = @HaveLibGmp@
776 LibGmp          = @LibGmp@
777
778 #-----------------------------------------------------------------------------
779 # GMP framework (Mac OS X)
780 #
781 HaveFrameworkGMP = @HaveFrameworkGMP@
782
783 #-----------------------------------------------------------------------------
784 # Mingwex Library
785 #
786 HaveLibMingwEx  = @HaveLibMingwEx@
787
788 #-----------------------------------------------------------------------------
789 # Flex (currently unused, could be moved to glafp-utils)
790
791 # FLEX                  = @LEX@
792 # Don't bother with -lfl, we define our own yywrap()s anyway.
793 # FLEX_LIB              = 
794 #WAS:FLEX_LIB           = @LEXLIB@
795
796 #-----------------------------------------------------------------------------
797 # Other standard (ha!) Unix utilities
798
799 AR                      = @ArCmd@
800 ArSupportsInput         = @ArSupportsInput@
801 # Yuckage: for ghc/utils/parallel -- todo: nuke this dependency!!
802 BASH                    = /usr/local/bin/bash
803
804 CONTEXT_DIFF            = @ContextDiffCmd@
805 CP                      = cp
806 CPP                     = @CPP@ @CPPFLAGS@
807 CTAGS                   = $(ETAGS)
808 #
809 # RAWCPP_FLAGS are the flags to give to cpp (viz, gcc -E) to persuade it to
810 # behave plausibly on Haskell sources.
811 #
812 RAWCPP_FLAGS            = -undef -traditional
813 FIND                    = @FindCmd@
814 SORT                    = @SortCmd@
815 INSTALL                 = @INSTALL@
816 #
817 # Sigh - the autoconf macro for INSTALL will subst a relative path to the fallback
818 # install-sh script (if chosen). This not terribly useful to us, so we convert
819 # it into an abs. path.
820
821 INSTALL                 := $(subst .././install-sh,$(FPTOOLS_TOP_ABS)/install-sh,$(INSTALL))
822 LATEX                   = latex
823 HEVEA                   = hevea
824 HACHA                   = hacha
825 LN_S                    = @LN_S@
826 MANMACROS               = -man
827 MSMACROS                = -ms
828 MV                      = mv
829 NROFF                   = nroff
830 PERL                    = @PerlCmd@
831 PYTHON                  = @PythonCmd@
832 PIC                     = pic
833 PREPROCESSCMD           = $(CC) -E
834 RANLIB                  = @RANLIB@
835 RM                      = rm -f
836 SED                     = @SedCmd@
837 SHELL                   = /bin/sh
838
839 LD                      = @LdCmd@
840
841 # Some ld's support the -x flag and some don't, so the configure
842 # script detects which we have and sets LdXFlag to "-x" or ""
843 # respectively.
844 LD_X                    = @LdXFlag@
845
846 # GNU ld supports input via a linker script, which is useful to avoid
847 # overflowing command-line length limits.
848 LdIsGNULd               = @LdIsGNULd@
849
850 #
851 # In emergency situations, REAL_SHELL is used to perform shell commands
852 # from within the ghc driver script, by scribbling the command line to
853 # a temp file and then having $(REAL_SHELL) execute it. 
854 #
855 # The reason for having to do this is that overly long command lines
856 # cause unnecessary trouble with some shells (e.g., /bin/sh on Solaris
857 # 2.5.1), which is why this backdoor is provided. The situation of overly
858 # long command lines is either encountered while doing `make boot' in ghc/compiler, 
859 # or when linking the compiler binary (`hsc'). 
860 #
861 # We do not use SHELL to execute long commands, as `make' will more than likely
862 # override whatever setting you have in your environment while executing. 
863
864 # By default, REAL_SHELL is set equal to SHELL, which is not really a smart move
865 # as it is SHELL that will show up the bogosity in the first place, but setting
866 # it to anything else isn't really portable.
867 #
868 #  ====> If long command lines cause you trouble, invoke `ghc' (via `make' or otherwise)
869 # with REAL_SHELL set to something else than /bin/sh, for instance, your favourite
870 # command shell.
871 #
872 REAL_SHELL=$(SHELL)
873 SIZE                    = size
874 STRIP                   = strip
875 TAR                     = @TarCmd@
876 ZIP                     = zip
877
878 #
879 # This is special to literate/, ToDo: add literate-specific
880 # configure setup to literate/.
881 #
882 TBL                     = tbl
883 TEX                     = tex
884 TGRIND                  = tgrind
885 TGRIND_HELPER           = /usr/local/lib/tgrind/tfontedpr # XXX
886 TIB                     = tib
887
888 TIME                    = @TimeCmd@
889 TROFF                   = troff
890 UNAME                   = uname
891
892 #-----------------------------------------------------------------------------
893 # DocBook XML stuff
894
895 XSLTPROC                = @XsltprocCmd@
896 XMLLINT                 = @XmllintCmd@
897 FOP                     = @FopCmd@
898 XMLTEX                  = @XmltexCmd@
899 PDFXMLTEX               = @PdfxmltexCmd@
900 DVIPS                   = @DvipsCmd@
901
902 DIR_DOCBOOK_XSL         = @DIR_DOCBOOK_XSL@
903
904 XSLTPROC_LABEL_OPTS     = --stringparam toc.section.depth 3 \
905                           --stringparam section.autolabel 1 \
906                           --stringparam section.label.includes.component.label 1
907
908 #-----------------------------------------------------------------------------
909 #               FPtools support software
910
911 # Stuff from fptools/glafp-utils
912 MKDEPENDC               = $(MKDEPENDC_PREFIX)mkdependC
913 LTX                     = $(LTX_PREFIX)ltx
914 MKDIRHIER               = $(MKDIRHIER_PREFIX)mkdirhier
915 LNDIR                   = $(LNDIR_PREFIX)lndir
916 ETAGS                   = $(ETAGS_PREFIX)etags
917 VERBATIM                = $(VERBATIM_PREFIX)verbatim
918 SGMLVERB                = $(SGMLVERB_PREFIX)sgmlverb
919 RUNTEST                 = $(RUNTEST_PREFIX)runstdtest
920
921 BLD_DLL                 = dllwrap
922
923 #
924 # .NET support software
925 #
926 ILX2IL                  = ilx2il
927 ILASM                   = ilasm
928
929 #
930 # ghc-pkg
931 #
932 GHC_PKG                 = @GhcPkgCmd@
933
934 #
935 # GreenCard
936 #
937 GREENCARD               = @GreenCardCmd@
938 GREENCARD_VERSION       = @GreenCardVersion@            
939
940 #
941 # Happy
942 #
943 HAPPY                   = @HappyCmd@
944 HAPPY_VERSION           = @HappyVersion@                
945 #
946 # Options to pass to Happy when we're going to compile the output with GHC
947 #
948 GHC_HAPPY_OPTS          = -agc
949
950 # Temp. to work around performance problems in the HEAD around 8/12/2003,
951 # A Happy compiled with this compiler needs more stack.
952 SRC_HAPPY_OPTS          = +RTS -K2m -RTS
953
954 #
955 # Alex
956 #
957 ALEX                    = @AlexCmd@
958 ALEX_VERSION            = @AlexVersion@         
959 #
960 # Options to pass to Happy when we're going to compile the output with GHC
961 #
962 GHC_ALEX_OPTS           = -g
963
964 #
965 # Haddock
966
967 HADDOCK                 = @HaddockCmd@
968 HADDOCK_INPLACE         = $(HADDOCK_PREFIX)/src/haddock-inplace
969
970 #
971 # Stuff from fptools/literate
972 #
973 LIT2PGM                 = $(LITERATE_PREFIX)lit2pgm
974 LIT2HTML                = $(LITERATE_PREFIX)lit2html
975 LIT2LATEX               = $(LITERATE_PREFIX)lit2latex
976 MKDEPENDLIT             = $(LITERATE_PREFIX)mkdependlit
977 LIT2CHANGELOG           = $(LITERATE_PREFIX)lit2changelog
978 LIT2TEXT                = $(LITERATE_PREFIX)lit2text
979
980 #
981 # Stuff from fptools/ghc/utils
982 #
983 UNLIT                   = $(UNLIT_PREFIX)unlit$(exeext)
984 HP2PS                   = $(HP2PS_PREFIX)hp2ps$(exeext)
985 HSTAGS                  = $(HSTAGS_PREFIX)hasktags
986 HSC2HS                  = $(HSC2HS_PREFIX)hsc2hs-inplace
987
988 #
989 # Options for the compiling different `ways'. Various projects within
990 # the glorious fptools tree support building in various user-configured
991 # ways. For instance, you could set up one `way' such that the prelude
992 # libraries all were built with the option -ffoldr-build-on.
993
994 # To configure up your own way, have a look at some of the standard ways
995 # such as profiling, and create your own set of WAY_*_OPTS defs below.
996 # After having done that, add your way string to WAYS, and after having
997 # run the configure script, the different projects will add the new way
998 # to the list of ways they support.
999 #
1000
1001 #
1002 # IMPORTANT! The WAYS variable configures the different `ways'
1003 # you want to build a project (or maybe just parts of it, as is
1004 # the case for ghc/). This variable is intended set inside the
1005 # project mk setup, enforcing a global fptools WAYS is a bit too
1006 # much (do you *really* want to build glafp-utils the profiled-concurrent 
1007 # way?)
1008 #
1009
1010 #
1011 # Definitions of the different ways:
1012 #   
1013 #   * their name:
1014 #          - tag, e.g., p
1015 #          - description, e.g., profiling
1016 #   * what they mean to the driver:
1017 #          - WAY_p_HC_OPTS gives the list of command-line options
1018 #            to the driver.
1019 #
1020
1021 #
1022 # The ways currently defined.
1023 #
1024 ALL_WAYS=p t u s mp mg a b c d e f g h i j k l m n o A B
1025 USER_WAYS=a b c d e f g h j k l m n o A B
1026
1027 #
1028 # The following ways currently have treated specially, p u t mg,
1029 # as the driver script treats these guys specially and needs to carefully be told
1030 # about the options for these. Hence, we hide the required command line options
1031 # for these in the ghc/driver, as this is the only place they are needed.
1032
1033 # If you want to add to these default options, fill in the variables below:
1034
1035 # Way 'i':
1036 WAY_i_NAME=ILX
1037 WAY_i_HC_OPTS= -filx -fruntime-types
1038
1039 # Way 'p':
1040 WAY_p_NAME=profiling
1041 WAY_p_HC_OPTS= -prof
1042
1043 # Way 't':
1044 WAY_t_NAME=ticky-ticky profiling
1045 WAY_t_HC_OPTS= -ticky
1046
1047 # Way `u':
1048 WAY_u_NAME=unregisterized (using portable C only)
1049 WAY_u_HC_OPTS=-unreg
1050
1051 # Way `s':
1052 WAY_s_NAME=threads (for SMP)
1053 WAY_s_HC_OPTS=-smp -optc-DTHREADED_RTS
1054
1055 # Way `mp': 
1056 WAY_mp_NAME=parallel
1057 WAY_mp_HC_OPTS=-parallel
1058
1059 # Way `mg': 
1060 WAY_mg_NAME=GranSim
1061 WAY_mg_HC_OPTS=-gransim
1062
1063 #
1064 # These ways apply to the RTS only:
1065 #
1066
1067 # Way 'thr':
1068 WAY_thr_NAME=threaded
1069 WAY_thr_HC_OPTS=-optc-DTHREADED_RTS
1070
1071 # Way 'thr_p':
1072 WAY_thr_p_NAME=threaded profiled
1073 WAY_thr_p_HC_OPTS=-optc-DTHREADED_RTS -prof
1074
1075 # Way 'debug':
1076 WAY_debug_NAME=debug
1077 WAY_debug_HC_OPTS=-optc-DDEBUG
1078
1079 # Way 'debug_p':
1080 WAY_debug_p_NAME=debug profiled
1081 WAY_debug_p_HC_OPTS=-optc-DDEBUG -prof
1082
1083 # Way 'debug_u':
1084 WAY_debug_u_NAME=debug unregisterised
1085 WAY_debug_u_HC_OPTS=-optc-DDEBUG -unreg
1086
1087 # Way 'debug_s':
1088 WAY_debug_s_NAME=debug SMP
1089 WAY_debug_s_HC_OPTS=-optc-DDEBUG -optc-DTHREADED_RTS -smp
1090
1091 # Way 'thr_debug':
1092 WAY_thr_debug_NAME=threaded
1093 WAY_thr_debug_HC_OPTS=-optc-DTHREADED_RTS -optc-DDEBUG
1094
1095 # Way 'thr_debug_p':
1096 WAY_thr_debug_p_NAME=threaded
1097 WAY_thr_debug_p_HC_OPTS=-optc-DTHREADED_RTS -optc-DDEBUG -prof
1098
1099 #
1100 # Add user-way configurations here:
1101 #
1102 WAY_A_NAME=
1103 WAY_A_HC_OPTS=
1104
1105 WAY_B_NAME=
1106 WAY_B_HC_OPTS=
1107
1108 WAY_a_NAME=
1109 WAY_a_HC_OPTS=
1110
1111 WAY_b_NAME=
1112 WAY_b_HC_OPTS=
1113
1114 WAY_c_NAME=
1115 WAY_c_HC_OPTS=
1116
1117 WAY_d_NAME=
1118 WAY_d_HC_OPTS=
1119
1120 WAY_e_NAME=
1121 WAY_e_HC_OPTS=
1122
1123 WAY_f_NAME=
1124 WAY_f_HC_OPTS=
1125
1126 WAY_g_NAME=
1127 WAY_g_HC_OPTS=
1128
1129 WAY_h_NAME=
1130 WAY_h_HC_OPTS=
1131
1132 WAY_j_NAME=
1133 WAY_j_HC_OPTS=
1134
1135 WAY_k_NAME=
1136 WAY_k_HC_OPTS=
1137
1138 WAY_l_NAME=
1139 WAY_l_HC_OPTS=
1140
1141 WAY_m_NAME=
1142 WAY_m_HC_OPTS=
1143
1144 WAY_n_NAME=
1145 WAY_n_HC_OPTS=
1146
1147 WAY_o_NAME=
1148 WAY_o_HC_OPTS=
1149
1150 ################################################################################
1151 #
1152 #               31-bit-Int Core files
1153 #
1154 ################################################################################
1155
1156
1157 # It is possible to configure the compiler and prelude to support 31-bit
1158 # integers, suitable for a back-end and RTS using a tag bit on a 32-bit
1159 # architecture.  Currently the only useful output from this option is external Core
1160 # files.  The following additions to your build.mk will produce the
1161 # 31-bit core output.  Note that this is *not* just a library "way"; the
1162 # compiler must be built a special way too.
1163
1164 # GhcCppOpts +=-DWORD_SIZE_IN_BITS=31
1165 # GhcLibHcOpts +=-fext-core -fno-code -DWORD_SIZE_IN_BITS=31
1166 # GhcLibCppOpts += -DWORD_SIZE_IN_BITS=31
1167 # SplitObjs=NO
1168