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