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