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