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