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