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