[project @ 2004-06-05 21:55:51 by panne]
[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 docs
149 else
150 AllProjects = glafp-utils happy alex haddock ghc libraries hslibs greencard hdirect hood nofib docs
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 ################################################################################
368 #
369 # libraries project
370 #
371 ################################################################################
372
373 # Build the Haskell Readline bindings?
374 #
375 GhcLibsWithReadline=@GhcLibsWithReadline@
376
377 # Libraries needed for linking with readline
378 LibsReadline=@LibsReadline@
379
380 # Include path to readline.h
381 # (no path == in standard include path)
382 #
383 ReadlineIncludePath=
384
385 # Math library
386 LIBM=@LIBM@
387
388 # Build the ObjectIO ?
389 #
390 GhcLibsWithObjectIO=@GhcLibsWithObjectIO@
391
392 # Build the Haskell OpenGL binding?
393 #
394 GhcLibsWithOpenGL=@GhcLibsWithOpenGL@
395 GLU_CFLAGS=@GLU_CFLAGS@
396 GLU_LIBS=@GLU_LIBS@
397
398 # Build the Haskell OpenAL binding?
399 #
400 GhcLibsWithOpenAL=@GhcLibsWithOpenAL@
401
402 # Build the Haskell GLUT binding?
403 #
404 GhcLibsWithGLUT=@GhcLibsWithGLUT@
405 GLUT_LIBS=@GLUT_LIBS@
406
407 # X11 stuff
408 #
409 GhcLibsWithX11=@GhcLibsWithX11@
410 X_CFLAGS=@X_CFLAGS@
411 X_LIBS=@X_LIBS@
412
413 # .NET interop support?
414 #
415 DotnetSupport=@DotnetSupport@
416
417 # Build unix package?
418 #
419 GhcLibsWithUnix=@GhcLibsWithUnix@
420
421 ################################################################################
422 #
423 #               happy project
424 #
425 #       Happy specific options
426 #
427 ################################################################################
428
429 # The compiler you'd like to use to compile Happy
430 WithHappyHc = @WithHc@
431
432 # HappyHcOpts gives the flags to pass to the Haskell compiler used
433 #             to compile the Happy sources with.
434 #
435 HappyHcOpts = -O
436
437 ################################################################################
438 #
439 #               haggis project
440 #
441 #       Haggis specific options
442 #
443 ################################################################################
444
445 ################################################################################
446 #
447 #               greencard project
448 #
449 #       GreenCard specific options
450 #
451 ################################################################################
452
453 ################################################################################
454 #
455 #               nofib project
456 #
457 #       nofib specific options
458 #
459 ################################################################################
460
461 WithNofibHc = $(GHC_INPLACE)
462
463 # NoFibSubDirs controls which set of tests should be run
464 # You can run one or more of
465 #       imaginary 
466 #       spectral
467 #       real
468 #       parallel
469 #       PRIVATE
470 #       PENDING
471 #       UNUSED
472 NoFibSubDirs = imaginary spectral real
473
474 # The different ways to build nofib. Default is just to mirror
475 # what is done for the ghc prelude libraries.
476 #
477 NoFibWays = $(GhcLibWays)
478
479 # Haskell compiler options for nofib
480 NoFibHcOpts = -O
481
482 # ==============================================================================
483 #
484 #                       END OF PROJECT-SPECIFIC STUFF
485 #
486 #               Now come the generic configuration options
487 #
488 # ==============================================================================
489
490 ################################################################################
491 #
492 #               Paths (see paths.mk)
493 #
494 ################################################################################
495
496 # Directory used by GHC (and possibly other tools) for storing
497 # temporary files.  If your TMPDIR isn't big enough, either override
498 # this in build.mk or set your environment variable "TMPDIR" to point
499 # to somewhere with more space.  (TMPDIR=. is a good choice).
500
501 # DEFAULT_TMPDIR isn't called TMPDIR because GNU make tends to
502 # override an environment variable with the value of the make variable
503 # of the same name (if it exists) when executing sub-processes, so
504 # setting the TMPDIR env var would have no effect in the build tree.
505
506 DEFAULT_TMPDIR          = /tmp
507 ifeq "$(TARGETPLATFORM)" "i386-unknown-cygwin32"
508 DEFAULT_TMPDIR          = C:/TEMP
509 endif
510 ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
511 DEFAULT_TMPDIR          = C:/TEMP
512 endif
513
514 # FPTOOLS_TOP: the top of the fptools hierarchy, absolute path. (POSIX / unix-style path).
515 FPTOOLS_TOP_ABS         = @hardtop@
516 # The platform specific version of 'hardtop'.
517 FPTOOLS_TOP_ABS_PLATFORM = @hardtop_plat@
518
519 #
520 # Installation directories, we don't use half of these,
521 # but since the configure script has them on offer while
522 # passing through, we might as well set them.
523
524 ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
525
526 prefix                  = @prefix@
527 exec_prefix             = @exec_prefix@
528 bindir                  = @bindir@
529 datadir0                = @datadir@
530 libdir0                 = @libdir@
531 includedir              = @includedir@
532 oldincludedir           = @oldincludedir@
533 mandir                  = @mandir@
534
535 ifeq "$(strip $(prefix))" ""
536 prefix          = c:/ghc
537 endif
538
539 ifacedir   = $(libdir)
540
541 ifeq "$(strip $(exec_prefix))" ""
542 exec_prefix             = $(prefix)
543 endif
544 ifeq "$(strip $(bindir))" ""
545 bindir                  = $(exec_prefix)/bin
546 endif
547
548 libexecdir              = $(libdir)
549
550 ifeq "$(strip $(datadir))" ""
551 datadir         = $(prefix)/imports
552 endif
553 ifeq "$(strip $(libdir))" ""
554 libdir          = $(prefix)
555 endif
556 ifeq "$(strip $(includedir))" ""
557 includedir      = $(prefix)/include
558 endif
559
560 else
561
562 prefix                  = @prefix@
563 exec_prefix             = @exec_prefix@
564 bindir                  = @bindir@
565 datadir0                = @datadir@
566 libdir0                 = @libdir@
567 includedir              = @includedir@
568 oldincludedir           = @oldincludedir@
569 mandir                  = @mandir@
570
571 #
572 # override libdir and datadir to put project-specific stuff in
573 # a subdirectory with the version number included.
574 #
575 libdir     = $(if $(ProjectNameShort),$(libdir0)/$(ProjectNameShort)-$(ProjectVersion),$(libdir0))
576 datadir    = $(if $(ProjectNameShort),$(datadir0)/$(ProjectNameShort)-$(ProjectVersion),$(datadir0))
577
578 # Default place for putting interface files is $(libdir)
579 # (overriden for packages in package.mk)
580 ifacedir   = $(libdir)
581
582
583 # Default values for most of the above are only set if
584 # they weren't configured to anything in particular
585 # via the configure script. (i.e., we make no assumption
586 # that the autoconf-generated script will assign defaults
587 # to all of the above).
588 #
589 ifeq "$(strip $(exec_prefix))" ""
590 exec_prefix             = $(prefix)
591 endif
592 ifeq "$(strip $(bindir))" ""
593 bindir                  = $(exec_prefix)/bin
594 endif
595
596 #
597 # NOTE: by intention, libexecdir and libdir point to 
598 # the same place.
599 #  => Only way to override this is to set libexecdir= on the command line.
600 #     (NOTE: configure script setting is ignored).
601 libexecdir              = $(libdir)
602
603 ifeq "$(strip $(datadir))" ""
604 datadir         = $(prefix)/share
605 endif
606 ifeq "$(strip $(libdir))" ""
607 libdir          = $(exec_prefix)/lib
608 endif
609 ifeq "$(strip $(includedir))" ""
610 includedir      = $(prefix)/include
611 endif
612 ifeq "$(strip $(oldincludedir))" ""
613 oldincludedir   = /usr/include
614 endif
615 ifeq "$(strip $(mandir))" ""
616 mandir          = $(prefix)/man
617 endif
618
619 endif  # i386-unknown-mingw32
620
621
622 ################################################################################
623 #
624 #               Utilities programs: flags
625 #
626 ################################################################################
627
628 # If you want to give any standard flags to pretty much any utility
629 # (see utils.mk for a complete list), by adding a line here
630 #
631 #       SRC_P_OPTS += ...
632 #
633 # where P is the utility. For example, to add -O to all Haskell
634 # compilations, 
635 #
636 #       SRC_HC_OPTS += -O
637
638 SRC_HC_OPTS += -H16m -O
639
640 # These flags make flex 8-bit
641 SRC_FLEX_OPTS   += -8
642
643 SRC_INSTALL_BIN_OPTS    += -s
644
645 # lint gets all CPP's flags too
646 SRC_LINT_OPTS           += -axz -DLINT $(SRC_CPP_OPTS)
647 WAY$(_way)_LINT_OPTS    += WAY$(_way)_CPP_OPTS
648
649 # Default fptools options for dllwrap.
650 SRC_BLD_DLL_OPTS += -mno-cygwin --target=i386-mingw32
651
652 # Flags for CPP when running GreenCard on .pgc files
653 GC_CPP_OPTS += -P -E -x c -traditional -D__GLASGOW_HASKELL__
654
655
656 ################################################################################
657 #
658 #               Utilities programs: where to find them
659 #
660 ################################################################################
661
662 #-----------------------------------------------------------------------------
663 # FPtools Utility locations
664
665 # By default, the various utils needed to be build ghc and chums
666 # is set up to point to the utils/ directory. Define here the
667 # path prefix for the utilities. Notice that it's a prefix with
668 # a trailing slash, so that it can be concatenated directly on
669 # front of a program name; if it's not set then we just look
670 # along the shell's $(PATH)
671 #
672 # If instead you want to use installed or your own versions of these,
673 # override the various *_PREFIX in build.mk, i.e., having the following
674 # in build.mk:
675 #
676 #   MKDEPENDC_PREFIX=
677 #
678 # will force `make' to rummage around in your PATH to find `mkdependC' (not
679 # sure it would need it in the first place, but still).
680 #
681 GLAFP_UTILS             = $(FPTOOLS_TOP)/glafp-utils
682
683 SCRIPT_PREFIX           = $(GLAFP_UTILS)/scripts/
684 MKDEPENDC_PREFIX        = $(GLAFP_UTILS)/mkdependC/
685 LTX_PREFIX              = $(GLAFP_UTILS)/ltx/
686 RUNTEST_PREFIX          = $(GLAFP_UTILS)/runstdtest/
687 VERBATIM_PREFIX         = $(GLAFP_UTILS)/verbatim/
688 SGMLVERB_PREFIX         = $(GLAFP_UTILS)/sgmlverb/
689 ETAGS_PREFIX            = $(GLAFP_UTILS)/etags/
690 LNDIR_PREFIX            = $(GLAFP_UTILS)/lndir/
691 MKDIRHIER_PREFIX        = $(GLAFP_UTILS)/mkdirhier/
692 DOCBOOK_PREFIX          = $(GLAFP_UTILS)/docbook/
693
694 HADDOCK_PREFIX          = $(FPTOOLS_TOP)/haddock/
695
696 LITERATE_PREFIX         = $(FPTOOLS_TOP)/literate/
697
698 UNLIT_PREFIX            = $(FPTOOLS_TOP)/ghc/utils/unlit/
699 HP2PS_PREFIX            = $(FPTOOLS_TOP)/ghc/utils/hp2ps/
700 HSTAGS_PREFIX           = $(FPTOOLS_TOP)/ghc/utils/hasktags/
701 HSC2HS_PREFIX           = $(FPTOOLS_TOP)/ghc/utils/hsc2hs/
702
703 #-----------------------------------------------------------------------------
704 # Haskell compilers and mkdependHS
705
706 # $(GHC), $(HBC) and $(NHC) point to installed versions of the relevant
707 # compilers, if available.
708 #
709 # $(HC) is a generic Haskell 98 compiler, set to $(GHC) by default.
710 # $(MKDEPENDHS) is the Haskell dependency generator (ghc -M).
711 #
712 # NOTE: Don't override $(GHC) in build.mk, use configure --with-ghc instead
713 # (because the version numbers have to be calculated).
714
715 GHC             = @WithGhc@
716 GhcDir          = $(dir $(GHC))
717 GhcVersion      = @GhcVersion@
718 GhcMajVersion   = @GhcMajVersion@
719 GhcMinVersion   = @GhcMinVersion@
720 GhcPatchLevel   = @GhcPatchLevel@
721
722 # Canonicalised ghc version number, used for easy (integer) version
723 # comparisons.  We must expand $(GhcMinVersion) to two digits by
724 # adding a leading zero if necessary:
725 ifneq "$(findstring $(GhcMinVersion), 0 1 2 3 4 5 6 7 8 9)" ""
726 GhcCanonVersion = $(GhcMajVersion)0$(GhcMinVersion)
727 else
728 GhcCanonVersion = $(GhcMajVersion)$(GhcMinVersion)
729 endif
730
731 HBC             = @HBC@
732 NHC             = @NHC@
733
734 HC              = @WithHc@
735 MKDEPENDHS      = $(GHC)
736
737 # Sometimes we want to invoke ghc from the build tree in different
738 # projects (eg. it's handy to have a nofib & a ghc build in the same
739 # tree).  We can refer to "this ghc" as $(GHC_INPLACE):
740
741 GHC_INPLACE     = $(FPTOOLS_TOP)/ghc/compiler/ghc-inplace
742 GHC_STAGE1      = $(FPTOOLS_TOP)/ghc/compiler/stage1/ghc-inplace
743 GHC_STAGE2      = $(FPTOOLS_TOP)/ghc/compiler/stage2/ghc-inplace
744 GHC_STAGE3      = $(FPTOOLS_TOP)/ghc/compiler/stage3/ghc-inplace
745
746 #-----------------------------------------------------------------------------
747 # C compiler
748 #
749 # NB. Don't override $(WhatGccIsCalled) using build.mk,  re-configure using
750 # the flag --with-gcc=<blah> instead.  The reason is that the configure script
751 # needs to know which gcc you're using in order to perform its tests.
752
753 HaveGcc         = @HaveGcc@
754 UseGcc          = YES
755 WhatGccIsCalled = @WhatGccIsCalled@
756 GccVersion      = @GccVersion@
757 ifeq "$(strip $(HaveGcc))" "YES"
758 ifneq "$(strip $(UseGcc))"  "YES"
759   CC    = cc
760 else
761   CC    = $(WhatGccIsCalled)
762   GccDir = $(dir $(WhatGccIsCalled))
763 endif
764 endif
765
766 # default C compiler flags
767 SRC_CC_OPTS = @SRC_CC_OPTS@
768
769 ifeq "$(TARGETPLATFORM)" "ia64-unknown-linux"
770 SRC_CC_OPTS += -G0
771 endif
772
773 # Solaris2 strikes again.
774 unix_SRC_HSC2HS_OPTS += @unix_SRC_HSC2HS_OPTS@
775
776 #-----------------------------------------------------------------------------
777 # GMP Library (version 2.0.x or above)
778 #
779 HaveLibGmp      = @HaveLibGmp@
780 LibGmp          = @LibGmp@
781
782 #-----------------------------------------------------------------------------
783 # Mingwex Library
784 #
785 HaveLibMingwEx  = @HaveLibMingwEx@
786
787 #-----------------------------------------------------------------------------
788 # HaskellSupport framework (Mac OS X)
789 #
790 HaveFrameworkHaskellSupport = @HaveFrameworkHaskellSupport@
791
792 #-----------------------------------------------------------------------------
793 # Regex library
794 # (if present in libc use that one, otherwise use the one in the tree)
795 #
796 HavePosixRegex  = @HavePosixRegex@
797
798 #-----------------------------------------------------------------------------
799 # GTK+
800
801 GTK_CONFIG              = @GTK_CONFIG@
802
803 #-----------------------------------------------------------------------------
804 # Flex (currently unused, could be moved to glafp-utils)
805
806 # FLEX                  = @LEX@
807 # Don't bother with -lfl, we define our own yywrap()s anyway.
808 # FLEX_LIB              = 
809 #WAS:FLEX_LIB           = @LEXLIB@
810
811 #-----------------------------------------------------------------------------
812 # Other standard (ha!) Unix utilities
813
814 AR                      = @ArCmd@
815 ArSupportsInput         = @ArSupportsInput@
816 # Yuckage: for ghc/utils/parallel -- todo: nuke this dependency!!
817 BASH                    = /usr/local/bin/bash
818
819 CONTEXT_DIFF            = @ContextDiffCmd@
820 CP                      = cp
821 CPP                     = @CPP@ @CPPFLAGS@
822 CTAGS                   = $(ETAGS)
823 #
824 # RAWCPP_FLAGS are the flags to give to cpp (viz, gcc -E) to persuade it to
825 # behave plausibly on Haskell sources.
826 #
827 RAWCPP_FLAGS            = -undef -traditional
828 FIND                    = @FindCmd@
829 INSTALL                 = @INSTALL@
830 #
831 # Sigh - the autoconf macro for INSTALL will subst a relative path to the fallback
832 # install-sh script (if chosen). This not terribly useful to us, so we convert
833 # it into an abs. path.
834
835 INSTALL                 := $(subst .././install-sh,$(FPTOOLS_TOP_ABS)/install-sh,$(INSTALL))
836 LATEX                   = latex
837 HEVEA                   = hevea
838 HACHA                   = hacha
839 LN_S                    = @LN_S@
840 MANMACROS               = -man
841 MSMACROS                = -ms
842 MV                      = mv
843 NROFF                   = nroff
844 PERL                    = @PerlCmd@
845 PYTHON                  = @PythonCmd@
846 PIC                     = pic
847 PREPROCESSCMD           = $(CC) -E
848 RANLIB                  = @RANLIB@
849 RM                      = rm -f
850 SED                     = @SedCmd@
851 SHELL                   = /bin/sh
852
853 # Some ld's support the -x flag and some don't, so the configure
854 # script detects which we have and sets LdXFlag to "-x" or ""
855 # respectively.
856 LD                      = @LdCmd@
857 LD_X                    = @LdXFlag@
858
859 #
860 # In emergency situations, REAL_SHELL is used to perform shell commands
861 # from within the ghc driver script, by scribbling the command line to
862 # a temp file and then having $(REAL_SHELL) execute it. 
863 #
864 # The reason for having to do this is that overly long command lines
865 # cause unnecessary trouble with some shells (e.g., /bin/sh on Solaris
866 # 2.5.1), which is why this backdoor is provided. The situation of overly
867 # long command lines is either encountered while doing `make boot' in ghc/compiler, 
868 # or when linking the compiler binary (`hsc'). 
869 #
870 # We do not use SHELL to execute long commands, as `make' will more than likely
871 # override whatever setting you have in your environment while executing. 
872
873 # By default, REAL_SHELL is set equal to SHELL, which is not really a smart move
874 # as it is SHELL that will show up the bogosity in the first place, but setting
875 # it to anything else isn't really portable.
876 #
877 #  ====> If long command lines cause you trouble, invoke `ghc' (via `make' or otherwise)
878 # with REAL_SHELL set to something else than /bin/sh, for instance, your favourite
879 # command shell.
880 #
881 REAL_SHELL=$(SHELL)
882 SIZE                    = size
883 STRIP                   = strip
884 TAR                     = @TarCmd@
885 ZIP                     = zip
886
887 #
888 # This is special to literate/, ToDo: add literate-specific
889 # configure setup to literate/.
890 #
891 TBL                     = tbl
892 TEX                     = tex
893 TGRIND                  = tgrind
894 TGRIND_HELPER           = /usr/local/lib/tgrind/tfontedpr # XXX
895 TIB                     = tib
896
897 TIME                    = @TimeCmd@
898 TROFF                   = troff
899 UNAME                   = uname
900
901 #-----------------------------------------------------------------------------
902 # SGML stuff
903
904 JADE                    = @JadeCmd@
905
906 SGML2DVI                = $(DOCBOOK_PREFIX)db2dvi
907 SGML2HTML               = $(DOCBOOK_PREFIX)db2html
908 SGML2PS                 = $(DOCBOOK_PREFIX)db2ps
909 SGML2PDF                = $(DOCBOOK_PREFIX)db2pdf
910 SGML2RTF                = $(DOCBOOK_PREFIX)db2rtf
911
912 SGMLSTYLESHEET          = $(FPTOOLS_TOP_ABS)/docs/fptools-both.dsl
913
914 SRC_SGML2DVI_OPTS       = -d $(SGMLSTYLESHEET)
915 SRC_SGML2HTML_OPTS      = -d $(SGMLSTYLESHEET)
916 SRC_SGML2PS_OPTS        = -d $(SGMLSTYLESHEET)
917 SRC_SGML2RTF_OPTS       = -d $(SGMLSTYLESHEET)
918 SRC_SGML2PDF_OPTS       = -d $(SGMLSTYLESHEET)
919
920 DOCBOOK_CATALOG         = @Catalog@
921
922 #-----------------------------------------------------------------------------
923 #               FPtools support software
924
925 # Stuff from fptools/glafp-utils
926 MKDEPENDC               = $(MKDEPENDC_PREFIX)mkdependC
927 LTX                     = $(LTX_PREFIX)ltx
928 MKDIRHIER               = $(MKDIRHIER_PREFIX)mkdirhier
929 LNDIR                   = $(LNDIR_PREFIX)lndir
930 ETAGS                   = $(ETAGS_PREFIX)etags
931 VERBATIM                = $(VERBATIM_PREFIX)verbatim
932 SGMLVERB                = $(SGMLVERB_PREFIX)sgmlverb
933 RUNTEST                 = $(RUNTEST_PREFIX)runstdtest
934 LX                      = @LxCmd@
935
936 BLD_DLL                 = dllwrap
937
938 #
939 # .NET support software
940 #
941 ILX2IL                  = ilx2il
942 ILASM                   = ilasm
943
944 #
945 # ghc-pkg
946 #
947 GHC_PKG                 = @GhcPkgCmd@
948
949 #
950 # GreenCard
951 #
952 GREENCARD               = @GreenCardCmd@
953 GREENCARD_VERSION       = @GreenCardVersion@            
954
955 #
956 # Happy
957 #
958 HAPPY                   = @HappyCmd@
959 HAPPY_VERSION           = @HappyVersion@                
960 #
961 # Options to pass to Happy when we're going to compile the output with GHC
962 #
963 GHC_HAPPY_OPTS          = -agc
964
965 # Temp. to work around performance problems in the HEAD around 8/12/2003,
966 # A Happy compiled with this compiler needs more stack.
967 SRC_HAPPY_OPTS          = +RTS -K2m -RTS
968
969 #
970 # Alex
971 #
972 ALEX                    = @AlexCmd@
973 ALEX_VERSION            = @AlexVersion@         
974 #
975 # Options to pass to Happy when we're going to compile the output with GHC
976 #
977 GHC_ALEX_OPTS           = -g
978
979 #
980 # Haddock
981
982 HADDOCK                 = @HaddockCmd@
983 HADDOCK_INPLACE         = $(HADDOCK_PREFIX)/src/haddock-inplace
984
985 #
986 # Stuff from fptools/literate
987 #
988 LIT2PGM                 = $(LITERATE_PREFIX)lit2pgm
989 LIT2HTML                = $(LITERATE_PREFIX)lit2html
990 LIT2LATEX               = $(LITERATE_PREFIX)lit2latex
991 MKDEPENDLIT             = $(LITERATE_PREFIX)mkdependlit
992 LIT2CHANGELOG           = $(LITERATE_PREFIX)lit2changelog
993 LIT2TEXT                = $(LITERATE_PREFIX)lit2text
994
995 #
996 # Stuff from fptools/ghc/utils
997 #
998 UNLIT                   = $(UNLIT_PREFIX)unlit$(exeext)
999 HP2PS                   = $(HP2PS_PREFIX)hp2ps$(exeext)
1000 HSTAGS                  = $(HSTAGS_PREFIX)hasktags
1001 HSC2HS                  = $(HSC2HS_PREFIX)hsc2hs-inplace
1002
1003 #
1004 # Options for the compiling different `ways'. Various projects within
1005 # the glorious fptools tree support building in various user-configured
1006 # ways. For instance, you could set up one `way' such that the prelude
1007 # libraries all were built with the option -ffoldr-build-on.
1008
1009 # To configure up your own way, have a look at some of the standard ways
1010 # such as profiling, and create your own set of WAY_*_OPTS defs below.
1011 # After having done that, add your way string to WAYS, and after having
1012 # run the configure script, the different projects will add the new way
1013 # to the list of ways they support.
1014 #
1015
1016 #
1017 # IMPORTANT! The WAYS variable configures the different `ways'
1018 # you want to build a project (or maybe just parts of it, as is
1019 # the case for ghc/). This variable is intended set inside the
1020 # project mk setup, enforcing a global fptools WAYS is a bit too
1021 # much (do you *really* want to build glafp-utils the profiled-concurrent 
1022 # way?)
1023 #
1024
1025 #
1026 # Definitions of the different ways:
1027 #   
1028 #   * their name:
1029 #          - tag, e.g., p
1030 #          - description, e.g., profiling
1031 #   * what they mean to the driver:
1032 #          - WAY_p_HC_OPTS gives the list of command-line options
1033 #            to the driver.
1034 #
1035
1036 #
1037 # The ways currently defined.
1038 #
1039 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
1040 USER_WAYS=a b c d e f g h j k l m n o A B
1041
1042 #
1043 # The following ways currently have treated specially, p u t mg,
1044 # as the driver script treats these guys specially and needs to carefully be told
1045 # about the options for these. Hence, we hide the required command line options
1046 # for these in the ghc/driver, as this is the only place they are needed.
1047
1048 # If you want to add to these default options, fill in the variables below:
1049
1050 # Way 'i':
1051 WAY_i_NAME=ILX
1052 WAY_i_HC_OPTS= -filx -fruntime-types
1053
1054 # Way 'p':
1055 WAY_p_NAME=profiling
1056 WAY_p_HC_OPTS= -prof
1057
1058 # Way 't':
1059 WAY_t_NAME=ticky-ticky profiling
1060 WAY_t_HC_OPTS= -ticky
1061
1062 # Way `u':
1063 WAY_u_NAME=unregisterized (using portable C only)
1064 WAY_u_HC_OPTS=-unreg
1065
1066 # Way `s':
1067 WAY_s_NAME=threads (for SMP)
1068 WAY_s_HC_OPTS=-smp
1069
1070 # Way `mp': 
1071 WAY_mp_NAME=parallel
1072 WAY_mp_HC_OPTS=-parallel
1073
1074 # Way `mg': 
1075 WAY_mg_NAME=GranSim
1076 WAY_mg_HC_OPTS=-gransim
1077
1078 #
1079 # These ways apply to the RTS only:
1080 #
1081
1082 # Way 'thr':
1083 WAY_thr_NAME=threaded
1084 WAY_thr_HC_OPTS=-optc-DTHREADED_RTS
1085
1086 # Way 'thr_p':
1087 WAY_thr_p_NAME=threaded profiled
1088 WAY_thr_p_HC_OPTS=-optc-DTHREADED_RTS -prof
1089
1090 # Way 'debug':
1091 WAY_debug_NAME=debug
1092 WAY_debug_HC_OPTS=-optc-DDEBUG
1093
1094 # Way 'debug_p':
1095 WAY_debug_p_NAME=debug profiled
1096 WAY_debug_p_HC_OPTS=-optc-DDEBUG -prof
1097
1098 # Way 'thr_debug':
1099 WAY_thr_debug_NAME=threaded
1100 WAY_thr_debug_HC_OPTS=-optc-DTHREADED_RTS -optc-DDEBUG
1101
1102 # Way 'thr_debug_p':
1103 WAY_thr_debug_p_NAME=threaded
1104 WAY_thr_debug_p_HC_OPTS=-optc-DTHREADED_RTS -optc-DDEBUG -prof
1105
1106 #
1107 # Add user-way configurations here:
1108 #
1109 WAY_A_NAME=
1110 WAY_A_HC_OPTS=
1111
1112 WAY_B_NAME=
1113 WAY_B_HC_OPTS=
1114
1115 WAY_a_NAME=
1116 WAY_a_HC_OPTS=
1117
1118 WAY_b_NAME=
1119 WAY_b_HC_OPTS=
1120
1121 WAY_c_NAME=
1122 WAY_c_HC_OPTS=
1123
1124 WAY_d_NAME=
1125 WAY_d_HC_OPTS=
1126
1127 WAY_e_NAME=
1128 WAY_e_HC_OPTS=
1129
1130 WAY_f_NAME=
1131 WAY_f_HC_OPTS=
1132
1133 WAY_g_NAME=
1134 WAY_g_HC_OPTS=
1135
1136 WAY_h_NAME=
1137 WAY_h_HC_OPTS=
1138
1139 WAY_j_NAME=
1140 WAY_j_HC_OPTS=
1141
1142 WAY_k_NAME=
1143 WAY_k_HC_OPTS=
1144
1145 WAY_l_NAME=
1146 WAY_l_HC_OPTS=
1147
1148 WAY_m_NAME=
1149 WAY_m_HC_OPTS=
1150
1151 WAY_n_NAME=
1152 WAY_n_HC_OPTS=
1153
1154 WAY_o_NAME=
1155 WAY_o_HC_OPTS=
1156
1157 ################################################################################
1158 #
1159 #               31-bit-Int Core files
1160 #
1161 ################################################################################
1162
1163
1164 # It is possible to configure the compiler and prelude to support 31-bit
1165 # integers, suitable for a back-end and RTS using a tag bit on a 32-bit
1166 # architecture.  Currently the only useful output from this option is external Core
1167 # files.  The following additions to your build.mk will produce the
1168 # 31-bit core output.  Note that this is *not* just a library "way"; the
1169 # compiler must be built a special way too.
1170
1171 # GhcCppOpts +=-DWORD_SIZE_IN_BITS=31
1172 # GhcLibHcOpts +=-fext-core -fno-code -DWORD_SIZE_IN_BITS=31
1173 # GhcLibCppOpts += -DWORD_SIZE_IN_BITS=31
1174 # SplitObjs=NO
1175