[project @ 1999-06-08 10:28:58 by simonmar]
[ghc-hetmet.git] / mk / config.mk.in
1 #
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. (cygwin32 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 #
101 # What parts to build: An fptools build tree does not have to be built
102 # all in one go. By setting the list of ProjectsToBuild in build.mk you can
103 # control which projects are built.
104 #
105 # Caution: the projects are built in the order given here, so if some
106 # projects use others you must list them in the correct order.
107 #
108 # Generally:    * glafp-utils should be first
109 #               * happy next
110 #               * ghc next
111 #               then it's up to you
112
113 ProjectsToBuild   = glafp-utils ghc
114 #
115 # Make a distinction between building and installing
116 #
117 ProjectsToInstall = glafp-utils ghc
118
119 #
120 # Should the various project tests directories be built?
121 #
122 IncludeTestDirsInBuild=NO
123
124 #################################################################################
125 #
126 #               GHC project
127
128 #       Set of (configurable) options needed by the ghc tree
129 #       plus their default options (if any).
130 #
131 #################################################################################
132
133 #---------------------------------------------------------------
134 #
135 # Variables that control how the compiler itself is built
136 #
137 #---------------------------------------------------------------
138
139 # Specify the Haskell compiler to be used to compile the compiler itself
140 #
141 #   WithGhcHc      Path name of the compiler to use
142 #
143 #   WithGhcHcType  What "type" of compiler is being used
144 #                  Valid options:
145 #                            HC_CHALMERS_HBC
146 #                            HC_GLASGOW_GHC
147 #                            HC_ROJEMO_NHC
148 #                            HC_UNSPECIFIED
149
150 WithGhcHc = @WithGhcHc@
151
152 # Variable which is set to the version number of the $(WithGhcHc) we're using.
153 # Not currently used, but might come in handy sometime soon.
154 #WithGhcHcVersion = $(shell echo `if ( $(WithGhcHc) --version 2>/dev/null >/dev/null ) then $(WithGhcHc) --version 2>&1 | @SedCmd@ -e 's/^.*version [^0-9]*\([.0-9]*\).*/\1/;s/\.//'; else echo unknown; fi; ` )
155
156 # Extra ways in which to build the compiler (for example, you might want to
157 # build a profiled compiler so you can see where it spends its time)
158 GhcCompilerWays=
159
160 # Extra option flags to pass to the compiler that compiles the compiler
161 # (Ones that are essential are wired into ghc/compiler/Makefile)
162 # Typical ones:
163 #       -H25m           allocate a bigger heap (default is 6m)
164 #
165 #       -O              compile an optimised compiler
166 #                       NB! If you add -O you'll almost certainly need to increase
167 #                       the amount of heap space too (to 15m or more)
168 #
169 #       -DDEBUG         include consistency/assertion checks in the compiled compiler
170 #
171 #       -dcore-lint     check the types after every pass of the compiler;
172 #                       a pretty strong internal check
173 GhcHcOpts=
174
175 # GhcWithHscBuiltViaC - build GHC compiler proper (\`hsc') from .hc files?
176 GhcWithHscBuiltViaC=@BootingFromHc@
177
178 # Build hsc with -O and turn optimising flag on when compiling
179 # the intermediate C file
180 GhcUseGccForOptAsm=YES
181
182 # Compile intermediate C file with debugging options set.
183 GhcUseGccForDebuggingAsm=YES
184
185 # Build a registerised version of hsc and runtime
186 # (you'd be desperate or silly not to).
187 GhcWithRegisterised=YES
188
189 # Build a compiler with a native code generator backend
190 # (as well as a C backend)
191 #
192 # Target platforms supported:
193 #   i386, alpha & sparc
194 GhcWithNativeCodeGen=$(shell if (test x$(findstring $(HostArch_CPP),i386 alpha sparc) = x); then echo NO; else echo YES; fi)
195
196 #
197 # Building various ways?
198 # (right now, empty if not).
199 BuildingParallel=$(subst mp,YES,$(filter mp,$(WAYS)))
200 BuildingProfiling=$(subst p,YES,$(filter p,$(WAYS)))
201 BuildingGranSim=$(subst mg,YES,$(filter mg,$(WAYS)))
202
203 #---------------------------------------------------------------
204 #
205 # Variables that control how the prelude libraries and runtime system are built
206
207 # What extra ways to build the libraries in
208 # In addition to the normal sequential way, the default is to also build
209 # profiled prelude libraries.
210 # When booting from .hc files, turn this off.
211 ifeq "$(GhcWithHscBuiltViaC)" "YES"
212 GhcLibWays=
213 else
214 GhcLibWays=p
215 endif
216
217 # Option flags to pass to GHC when it's compiling prelude modules
218 # Typically these are things like -O or -dcore-lint
219 # The ones that are *essential* are wired into ghc/lib/Makefile
220 #
221 #       -O is pretty desirable, otherwise no inlining of prelude
222 #               things (incl "+") happens when compiling with this compiler
223
224 ifeq "$(GhcWithHscBuiltViaC)" "YES"
225 GhcLibHcOpts=-O
226 else
227 GhcLibHcOpts=-O -split-objs -odir $*
228 endif
229
230 # Option flags to pass to GHC when it's compiling RTS modules
231 # This is a good way to set things like -optc-g and -optc-DDEBUG for the RTS.
232 # GhcRtsHcOpts is used when compiling .hc files.
233 # GhcRtsCcOpts is used when compiling .c  files.
234
235 GhcRtsHcOpts=-O2
236 GhcRtsCcOpts=-O2 -optc-fomit-frame-pointer
237
238 # Build the Haskell Readline bindings?
239 #
240 GhcLibsWithReadline=NO
241 #
242 # Include path to readline.h
243 # (no path == in standard include path)
244 #
245 ReadlineIncludePath=
246
247 # Build the socket libraries?  (ToDo: is this used?)
248 #
249 GhcLibsWithSockets=YES
250
251 # Strip local symbols from libraries?  This can make the libraries smaller,
252 # but makes debugging somewhat more difficult.  Doesn't work with all ld's.
253 #
254 StripLibraries=NO
255
256 # Include compiler support for letting the compiler (optionally) report
257 # your compilation to a central server for generation of fun stats.
258 #
259 GhcReportCompiles=NO
260
261 # Win32 only: Enable the RTS and libraries to be built as DLLs
262 #
263 EnableWin32DLLs=@EnableWin32DLLs@
264
265 #################################################################################
266 #
267 #               happy project
268 #
269 #       Happy specific options
270 #
271 #################################################################################
272
273 # The compiler you'd like to use to compile Happy
274 WithHappyHc = $(WithGhcHc)
275
276 # HappyHcOpts gives the flags to pass to the Haskell compiler used
277 #             to compile the Happy sources with.
278 #
279 HappyHcOpts = -O
280
281 #################################################################################
282 #
283 #               haggis project
284 #
285 #       Haggis specific options
286 #
287 #################################################################################
288
289 #################################################################################
290 #
291 #               green-card project
292 #
293 #       Green-card specific options
294 #
295 #################################################################################
296
297 #################################################################################
298 #
299 #               nofib project
300 #
301 #       nofib specific options
302 #
303 #################################################################################
304
305
306 # NoFibSubDirs controls which set of tests should be run
307 # You can run one or more of
308 #       imaginary 
309 #       spectral
310 #       real
311 #       parallel
312 #       PRIVATE
313 #       PENDING
314 #       UNUSED
315 NoFibSubDirs = imaginary spectral real
316
317 # The different ways to build nofib. Default is just to mirror
318 # what is done for the ghc prelude libraries.
319 #
320 NoFibWays = $(GhcLibWays)
321
322 # Haskell compiler options for nofib
323 NoFibHcOpts = -O
324
325 # ==============================================================================
326 #
327 #                       END OF PROJECT-SPECIFIC STUFF
328 #
329 #               Now come the generic configuration options
330 #
331 # ==============================================================================
332
333 #################################################################################
334 #
335 #               Paths (see paths.mk)
336 #
337 #################################################################################
338
339 TMPDIR                  = /tmp
340
341 # FPTOOLS_TOP: the top of the fptools hierarchy, absolute path.
342
343 FPTOOLS_TOP_ABS         = @hardtop@
344
345 #
346 # Installation directories, we don't use half of these,
347 # but since the configure script has them on offer while
348 # passing through, we might as well set them.
349
350 prefix                  = @prefix@
351 exec_prefix             = @exec_prefix@
352 bindir                  = @bindir@
353 #UNUSED, see below: libexecdir              = @libexecdir@
354 datadir                 = @datadir@
355 #sysconfdir              = @datadir@
356 #sharedstatedir          = @sharedstatedir@
357 #localstatedir           = @localstatedir@
358 libdir                  = @libdir@
359 infodir                 = @infodir@
360 includedir              = @includedir@
361 oldincludedir           = @oldincludedir@
362 mandir                  = @mandir@
363 #UNUSED:srcdir          = @srcdir@
364
365
366 # Default values for most of the above are only set if
367 # they weren't configured to anything in particular
368 # via the configure script. (i.e., we make no assumption
369 # that the autoconf-generated script will assign defaults
370 # to all of the above).
371 #
372 ifeq "$(strip $(exec_prefix))" ""
373 exec_prefix             = $(prefix)
374 endif
375 ifeq "$(strip $(bindir))" ""
376 bindir                  = $(exec_prefix)/bin
377 endif
378
379 #
380 # NOTE: by intention, libexecdir and libdir point to 
381 # the same place.
382 #  => Only way to override this is to set libexecdir= on the command line.
383 #     (NOTE: configure script setting is ignored).
384 libexecdir              = $(libdir)
385
386 ifeq "$(strip $(datadir))" ""
387 datadir         = $(prefix)/share
388 endif
389 ifeq "$(strip $(libdir))" ""
390 libdir          = $(exec_prefix)/lib
391 endif
392 ifeq "$(strip $(infodir))" ""
393 infodir         = $(prefix)/info
394 endif
395 ifeq "$(strip $(includedir))" ""
396 includedir      = $(prefix)/include
397 endif
398 ifeq "$(strip $(oldincludedir))" ""
399 oldincludedir   = /usr/include
400 endif
401 ifeq "$(strip $(mandir))" ""
402 mandir          = $(prefix)/man
403 endif
404  
405
406 #################################################################################
407 #
408 #               Utilities programs: flags
409 #
410 #################################################################################
411
412 # If you want to give any standard flags to pretty much any utility
413 # (see utils.mk for a complete list), by adding a line here
414 #
415 #       SRC_P_OPTS += ...
416 #
417 # where P is the utility. For example, to add -O to all Haskell
418 # compilations, 
419 #
420 #       SRC_HC_OPTS += -O
421
422
423 #################################################################################
424 #
425 #               Utilities programs: where to find them
426 #
427 #################################################################################
428
429 #-----------------------------------------------------------------------------
430 # FPtools Utility locations
431
432 # By default, the various utils needed to be build ghc and chums
433 # is set up to point to the utils/ directory. Define here the
434 # path prefix for the utilities. Notice that it's a prefix with
435 # a trailing slash, so that it can be concatenated directly on
436 # front of a program name; if it's not set then we just look
437 # along the shell's $(PATH)
438 #
439 # If instead you want to use installed or your own versions of these,
440 # override the various *_PREFIX in build.mk, i.e., having the following
441 # in build.mk:
442 #
443 #   MKDEPENDC_PREFIX=
444 #
445 # will force `make' to rummage around in your PATH to find `mkdependC' (not
446 # sure it would need it in the first place, but still).
447 #
448 GLAFP_UTILS             = $(FPTOOLS_TOP)/glafp-utils
449
450 SCRIPT_PREFIX           = $(GLAFP_UTILS)/scripts/
451 MKDEPENDC_PREFIX        = $(GLAFP_UTILS)/mkdependC/
452 LTX_PREFIX              = $(GLAFP_UTILS)/ltx/
453 RUNTEST_PREFIX          = $(GLAFP_UTILS)/runstdtest/
454 VERBATIM_PREFIX         = $(GLAFP_UTILS)/verbatim/
455 SGMLVERB_PREFIX         = $(GLAFP_UTILS)/sgmlverb/
456 ETAGS_PREFIX            = $(GLAFP_UTILS)/etags/
457 MSUB_PREFIX             = $(GLAFP_UTILS)/msub/
458 LNDIR_PREFIX            = $(GLAFP_UTILS)/lndir/
459 MKDIRHIER_PREFIX        = $(GLAFP_UTILS)/mkdirhier/
460
461 # Still used?
462 LITERATE                = $(FPTOOLS_TOP)/literate
463
464 LITERATE_PREFIX         = $(FPTOOLS_TOP)/literate/
465 INFO_PREFIX             = $(FPTOOLS_TOP)/literate/info-utils/
466 TEXI2HTML_PREFIX        = $(LITERATE_PREFIX)texi2html/
467
468 HAPPY_PREFIX            = $(FPTOOLS_TOP)/happy/src/
469 GREENCARD_PREFIX        = $(FPTOOLS_TOP)/green-card/src/
470
471 RTS_PREFIX              = $(FPTOOLS_TOP)/common-rts/
472
473 UNLIT_PREFIX            = $(FPTOOLS_TOP)/ghc/utils/unlit/
474 UGEN_PREFIX             = $(FPTOOLS_TOP)/ghc/utils/ugen/
475 STAT2RESID_PREFIX       = $(FPTOOLS_TOP)/ghc/utils/stat2resid/
476 HP2PS_PREFIX            = $(FPTOOLS_TOP)/ghc/utils/hp2ps/
477 HSCPP_PREFIX            = $(FPTOOLS_TOP)/ghc/utils/hscpp/
478 HSTAGS_PREFIX           = $(FPTOOLS_TOP)/ghc/utils/hstags/
479
480
481 #-----------------------------------------------------------------------------
482 # Haskell compiler and mkdependHS
483
484 HC              = $(FPTOOLS_TOP)/ghc/driver/ghc
485 MKDEPENDHS      = $(HC)
486
487 #-----------------------------------------------------------------------------
488 # C compiler
489 #
490 #
491 HaveGcc         = @HaveGcc@
492 UseGcc          = YES
493 WhatGccIsCalled = @WhatGccIsCalled@
494 ifeq "$(strip $(HaveGcc))" "YES"
495 ifneq "$(strip $(UseGcc))"  "YES"
496   CC    = cc
497 else
498   CC    = $(WhatGccIsCalled)
499 endif
500 endif
501
502 #-----------------------------------------------------------------------------
503 # GMP Library (version 2.0.x or above)
504 #
505 HaveLibGmp      = @HaveLibGmp@
506 LibGmp          = @LibGmp@
507
508 #-----------------------------------------------------------------------------
509 # Flex
510
511 FLEX                    = @LEX@
512 # Don't bother with -lfl, we define our own yywrap()s anyway.
513 FLEX_LIB                = 
514 #WAS:FLEX_LIB           = @LEXLIB@
515
516 #-----------------------------------------------------------------------------
517 # Other standard (ha!) Unix utilities
518
519 AR                      = @ArCmd@
520 # Yuckage: for ghc/utils/parallel -- todo: nuke this dependency!!
521 BASH                    = /usr/local/bin/bash
522 #
523 # Could be either gzip or compress
524 #
525 COMPRESS                = @CompressCmd@
526 COMPRESS_SUFFIX         = @CompressSuffix@
527
528 CONTEXT_DIFF            = @ContextDiffCmd@
529 CP                      = cp
530 CPP                     = @CPP@
531 CTAGS                   = $(ETAGS)
532 RAWCPP                  = @RAWCPP@
533 INSTALL                 = @INSTALL@
534 #
535 # Sigh - the autoconf macro for INSTALL will subst a relative path to the fallback
536 # install-sh script (if chosen). This not terribly useful to us, so we convert
537 # it into an abs. path.
538
539 INSTALL                 := $(subst .././install-sh,$(FPTOOLS_TOP_ABS)/install-sh,$(INSTALL))
540 LATEX                   = latex
541 LN_S                    = @LN_S@
542 MANMACROS               = -man
543 MSMACROS                = -ms
544 MV                      = mv
545 NROFF                   = nroff
546 PERL                    = @PerlCmd@
547 PIC                     = pic
548 PREPROCESSCMD           = $(CC) -E
549 PRINTER                 = lpr
550 RANLIB                  = @RANLIB@
551 RM                      = rm -f
552 SED                     = @SedCmd@
553 SHELL                   = /bin/sh
554 #
555 # In emergency situations, REAL_SHELL is used to perform shell commands
556 # from within the ghc driver script, by scribbling the command line to
557 # a temp file and then having $(REAL_SHELL) execute it. 
558 #
559 # The reason for having to do this is that overly long command lines
560 # cause unnecessary trouble with some shells (e.g., /bin/sh on Solaris
561 # 2.5.1), which is why this backdoor is provided. The situation of overly
562 # long command lines is either encountered while doing `make boot' in ghc/compiler, 
563 # or when linking the compiler binary (`hsc'). 
564 #
565 # We do not use SHELL to execute long commands, as `make' will more than likely
566 # override whatever setting you have in your environment while executing. 
567
568 # By default, REAL_SHELL is set equal SHELL, which is not really a smart move
569 # as it SHELL that will show up the bogosity in the first place, but setting
570 # it to anything else isn't really portable.
571 #
572 #  ====> If long command lines cause you trouble, invoke `ghc' (via `make' or otherwise)
573 # with REAL_SHELL set to something else than /bin/sh, for instance, your favourite
574 # command shell.
575 #
576 REAL_SHELL=$(SHELL)
577 SIZE                    = size
578 STRIP                   = strip
579 TAR                     = @TarCmd@
580 ZIP                     = zip
581
582 #
583 # Under cygwin32, we have to deal with .exe suffixes
584 #
585 EXE_SUFFIX=@ExeSuffix@
586
587 #
588 # This is special to literate/, ToDo: add literate-specific
589 # configure setup to literate/.
590 #
591 TBL                     = tbl
592 TEX                     = tex
593 TGRIND                  = tgrind
594 TGRIND_HELPER           = /usr/local/lib/tgrind/tfontedpr # XXX
595 TIB                     = tib
596
597 TIME                    = @TimeCmd@
598 TROFF                   = troff
599 UNAME                   = uname
600 YACC                    = @YaccCmd@
601
602 #-----------------------------------------------------------------------------
603 # SGML stuff (currently not configured - we assume you have it)
604
605 SGML2LATEX              = sgml2latex
606 SGML2HTML               = sgml2html
607 SGML2INFO               = sgml2info
608 SGML2TXT                = sgml2txt
609
610 #-----------------------------------------------------------------------------
611 #               FPtools support software
612
613 # Stuff from fptools/glafp-utils
614 MKDEPENDC               = $(MKDEPENDC_PREFIX)mkdependC
615 LTX                     = $(LTX_PREFIX)ltx
616 MKDIRHIER               = $(MKDIRHIER_PREFIX)mkdirhier
617 LNDIR                   = $(LNDIR_PREFIX)lndir
618 MSUB                    = $(MSUB_PREFIX)msub
619 ETAGS                   = $(ETAGS_PREFIX)etags
620 VERBATIM                = $(VERBATIM_PREFIX)verbatim
621 SGMLVERB                = $(SGMLVERB_PREFIX)sgmlverb
622 SGML2LATEX              = sgml2latex
623 RUNTEST                 = $(RUNTEST_PREFIX)runstdtest
624 HAPPY                   = @HappyCmd@
625 HAPPY_VERSION           = @HappyVersion@                
626 LX                      = @LxCmd@
627 GREENCARD               = $(FPTOOLS_TOP)/green-card/src/green-card
628
629 BLD_DLL                 = dllwrap
630
631 #
632 # Stuff from fptools/literate
633 #
634 INFO                    = $(UTIL_PREFIX)info
635 MAKEINFO                = $(INFO_PREFIX)makeinfo
636 POSTMAKEINFO            = $(INFO_PREFIX)postmakeinfo
637 LIT2PGM                 = $(LITERATE_PREFIX)lit2pgm
638 LIT2TEXI                = $(LITERATE_PREFIX)lit2texi
639 LIT2HTML                = $(LITERATE_PREFIX)lit2html
640 LIT2LATEX               = $(LITERATE_PREFIX)lit2latex
641 MKDEPENDLIT             = $(LITERATE_PREFIX)mkdependlit
642 LIT2CHANGELOG           = $(LITERATE_PREFIX)lit2changelog
643 LIT2TEXT                = $(LITERATE_PREFIX)lit2text
644 TEXI2HTML               = $(TEXI2HTML_PREFIX)texi2html
645
646 #
647 # Stuff from fptools/ghc/utils
648 #
649 UNLIT                   = $(UNLIT_PREFIX)unlit
650 UGEN                    = $(UGEN_PREFIX)ugen
651 STAT2RESID              = $(STAT2RESID_PREFIX)stat2resid
652 HP2PS                   = $(HP2PS_PREFIX)hp2ps
653 HSCPP                   = $(HSCPP_PREFIX)hscpp
654 HSTAGS                  = $(HSTAGS_PREFIX)hstags
655
656 #
657 # Options for the compiling different `ways'. Various projects within
658 # the glorious fptools tree support building in various user-configured
659 # ways. For instance, you could set up one `way' such that the prelude
660 # libraries all were built with the option -ffoldr-build-on.
661
662 # To configure up your own way, have a look at some of the standard ways
663 # such as profiling, and create your own set of WAY_*_OPTS defs below.
664 # After having done that, add your way string to WAYS, and after having
665 # run the configure script, the different projects will add the new way
666 # to the list of ways they support.
667 #
668
669 #
670 # IMPORTANT! The WAYS variable configures the different `ways'
671 # you want to build a project (or maybe just parts of it, as is
672 # the case for ghc/). This variable is intended set inside the
673 # project mk setup, enforcing a global fptools WAYS is a bit too
674 # much (do you *really* want to build glafp-utils the profiled-concurrent 
675 # way?)
676 #
677
678 #
679 # Definitions of the different ways:
680 #   
681 #   * their name:
682 #          - tag, e.g., p
683 #          - description, e.g., profiling
684 #   * what they mean to the driver:
685 #          - WAY_p_HC_OPTS gives the list of command-line options
686 #            to the driver.
687 #
688
689 #
690 # The ways currently defined.
691 #
692 ALL_WAYS=p t u mp mg a b c d e f g h i j k l m n o A B
693
694 #
695 # The following ways currently have treated specially, p u t mg,
696 # as the driver script treats these guys specially and needs to carefully be told
697 # about the options for these. Hence, we hide the required command line options
698 # for these in the ghc/driver, as this is the only place they are needed.
699
700 # If you want to add to these default options, fill in the variables below:
701
702 # Way 'p':
703 WAY_p_NAME=profiling
704 WAY_p_HC_OPTS= -prof
705
706 # Way 't':
707 WAY_t_NAME=ticky-ticky profiling
708 WAY_t_HC_OPTS= -ticky
709
710 # Way `u':
711 WAY_u_NAME=unregisterized (using portable C only)
712 WAY_u_HC_OPTS=-unreg
713
714 # Way `mp': 
715 WAY_mp_NAME=parallel
716 WAY_mp_HC_OPTS=-parallel
717
718 # Way `mg': 
719 WAY_mg_NAME=GranSim
720 WAY_mg_HC_OPTS=-gransim
721
722 # Way `dll': 
723 WAY_dll_NAME=Win32 DLLs
724 WAY_dll_HC_OPTS=
725
726 #
727 # Add user-way configurations here:
728 #
729 WAY_A_NAME=
730 WAY_A_HC_OPTS=
731
732 WAY_B_NAME=
733 WAY_B_HC_OPTS=
734
735 WAY_a_NAME=
736 WAY_a_HC_OPTS=
737
738 WAY_b_NAME=
739 WAY_b_HC_OPTS=
740
741 WAY_c_NAME=
742 WAY_c_HC_OPTS=
743
744 WAY_d_NAME=
745 WAY_d_HC_OPTS=
746
747 WAY_e_NAME=
748 WAY_e_HC_OPTS=
749
750 WAY_f_NAME=
751 WAY_f_HC_OPTS=
752
753 WAY_g_NAME=
754 WAY_g_HC_OPTS=
755
756 WAY_h_NAME=
757 WAY_h_HC_OPTS=
758
759 WAY_i_NAME=
760 WAY_i_HC_OPTS=
761
762 WAY_j_NAME=
763 WAY_j_HC_OPTS=
764
765 WAY_k_NAME=
766 WAY_k_HC_OPTS=
767
768 WAY_l_NAME=
769 WAY_l_HC_OPTS=
770
771 WAY_m_NAME=
772 WAY_m_HC_OPTS=
773
774 WAY_n_NAME=
775 WAY_n_HC_OPTS=
776
777 WAY_o_NAME=
778 WAY_o_HC_OPTS=