[project @ 1998-01-21 14:24:23 by simonm]
[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=
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 #   FASTMAKE_PREFIX=
490 #
491 # will force `make' to rummage around in your PATH to find `fastmake' (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 FASTMAKE_PREFIX         = $(GLAFP_UTILS)/fastmake/
498 MKDEPENDC_PREFIX        = $(GLAFP_UTILS)/mkdependC/
499 LTX_PREFIX              = $(GLAFP_UTILS)/ltx/
500 RUNTEST_PREFIX          = $(GLAFP_UTILS)/runstdtest/
501 VERBATIM_PREFIX         = $(GLAFP_UTILS)/verbatim/
502 SGMLVERB_PREFIX         = $(GLAFP_UTILS)/sgmlverb/
503 ETAGS_PREFIX            = $(GLAFP_UTILS)/etags/
504 MSUB_PREFIX             = $(GLAFP_UTILS)/msub/
505 LNDIR_PREFIX            = $(GLAFP_UTILS)/lndir/
506 MKDIRHIER_PREFIX        = $(GLAFP_UTILS)/mkdirhier/
507
508 # Still used?
509 LITERATE                = $(FPTOOLS_TOP)/literate
510
511 LITERATE_PREFIX         = $(FPTOOLS_TOP)/literate/
512 INFO_PREFIX             = $(FPTOOLS_TOP)/literate/info-utils/
513 TEXI2HTML_PREFIX        = $(LITERATE_PREFIX)texi2html/
514
515 HAPPY_PREFIX            = $(FPTOOLS_TOP)/happy/src/
516 GREENCARD_PREFIX        = $(FPTOOLS_TOP)/green-card/src/
517
518 UNLIT_PREFIX            = $(FPTOOLS_TOP)/ghc/utils/unlit/
519 UGEN_PREFIX             = $(FPTOOLS_TOP)/ghc/utils/ugen/
520 STAT2RESID_PREFIX       = $(FPTOOLS_TOP)/ghc/utils/stat2resid/
521 HP2PS_PREFIX            = $(FPTOOLS_TOP)/ghc/utils/hp2ps/
522 HSCPP_PREFIX            = $(FPTOOLS_TOP)/ghc/utils/hscpp/
523 HSTAGS_PREFIX           = $(FPTOOLS_TOP)/ghc/utils/hstags/
524
525
526 #-----------------------------------------------------------------------------
527 # Haskell compiler and mkdependHS
528
529 HC              = $(FPTOOLS_TOP)/ghc/driver/ghc
530 MKDEPENDHS      = $(HC)
531
532 #-----------------------------------------------------------------------------
533 # C compiler
534 #
535 #
536 HaveGcc         = @HaveGcc@
537 UseGcc          = YES
538 WhatGccIsCalled = gcc
539 ifeq "$(strip $(HaveGcc))" "YES"
540 ifneq "$(strip $(UseGcc))"  "YES"
541   CC    = cc
542 else
543   CC    = $(WhatGccIsCalled)
544 endif
545 endif
546
547 #-----------------------------------------------------------------------------
548 # Flex
549
550 FLEX                    = @LEX@
551 FLEX_LIB                = @LEXLIB@
552
553 #-----------------------------------------------------------------------------
554 # Other standard (ha!) Unix utilities
555
556 AR                      = @ArCmd@
557 # Yuckage: for ghc/utils/parallel -- todo: nuke this dependency!!
558 BASH                    = /usr/local/bin/bash
559 #
560 # Could be either gzip or compress
561 #
562 COMPRESS                = @CompressCmd@
563 COMPRESS_SUFFIX         = @CompressSuffix@
564
565 CONTEXT_DIFF            = @ContextDiffCmd@
566 CP                      = cp
567 CPP                     = @RAWCPP@
568 CTAGS                   = $(ETAGS)
569 RAWCPP                  = @RAWCPP@
570 GNUCPP                  = @GNUCPP@
571 INSTALL                 = @INSTALL@
572 #
573 # Sigh - the autoconf macro for INSTALL will subst a relative path to the fallback
574 # install-sh script (if chosen). This not terribly useful to us, so we convert
575 # it into an abs. path.
576
577 INSTALL                 := $(subst .././install-sh,$(FPTOOLS_TOP_ABS)/install-sh,$(INSTALL))
578 LATEX                   = latex
579 LN_S                    = @LN_S@
580 MANMACROS               = -man
581 MSMACROS                = -ms
582 MV                      = mv
583 NROFF                   = nroff
584 PERL                    = @PerlCmd@
585 PIC                     = pic
586 PREPROCESSCMD           = $(CC) -E
587 PRINTER                 = lpr
588 RANLIB                  = @RANLIB@
589 RM                      = rm -f
590 SED                     = @SedCmd@
591 SHELL                   = /bin/sh
592 #
593 # In emergency situations, REAL_SHELL is used to perform shell commands
594 # from within the ghc driver script, by scribbling the command line to
595 # a temp file and then having $(REAL_SHELL) execute it. 
596 #
597 # The reason for having to do this is that overly long command lines
598 # cause unnecessary trouble with some shells (e.g., /bin/sh on Solaris
599 # 2.5.1), which is why this backdoor is provided. The situation of overly
600 # long command lines is either encountered while doing `make boot' in ghc/compiler, 
601 # or when linking the compiler binary (`hsc'). 
602 #
603 # We do not use SHELL to execute long commands, as `make' will more than likely
604 # override whatever setting you have in your environment while executing. 
605
606 # By default, REAL_SHELL is set equal SHELL, which is not really a smart move
607 # as it SHELL that will show up the bogosity in the first place, but setting
608 # it to anything else isn't really portable.
609 #
610 #  ====> If long command lines cause you trouble, invoke `ghc' (via `make' or otherwise)
611 # with REAL_SHELL set to something else than /bin/sh, for instance, your favourite
612 # command shell.
613 #
614 REAL_SHELL=$(SHELL)
615 SIZE                    = size
616 STRIP                   = strip
617 TAR                     = @TarCmd@
618
619 #
620 # Under cygwin32, we have to deal with .exe suffixes
621 #
622 EXE_SUFFIX=@ExeSuffix@
623
624 #
625 # This is special to literate/, ToDo: add literate-specific
626 # configure setup to literate/.
627 #
628 TBL                     = tbl
629 TEX                     = tex
630 TGRIND                  = tgrind
631 TGRIND_HELPER           = /usr/local/lib/tgrind/tfontedpr # XXX
632 TIB                     = tib
633
634 TIME                    = @TimeCmd@
635 TROFF                   = troff
636 UNAME                   = uname
637 YACC                    = @YaccCmd@
638
639 #-----------------------------------------------------------------------------
640 # SGML stuff (currently not configured - we assume you have it)
641
642 SGML2LATEX              = sgml2latex
643 SGML2HTML               = sgml2html
644 SGML2INFO               = sgml2info
645 SGML2TXT                = sgml2txt
646
647 #-----------------------------------------------------------------------------
648 #               FPtools support software
649
650 # Stuff from fptools/glafp-utils
651 MKDEPENDC               = $(MKDEPENDC_PREFIX)mkdependC
652 FASTMAKE                = $(FASTMAKE_PREFIX)fastmake
653 LTX                     = $(LTX_PREFIX)ltx
654 MKDIRHIER               = $(MKDIRHIER_PREFIX)mkdirhier
655 LNDIR                   = $(LNDIR_PREFIX)lndir
656 MSUB                    = $(MSUB_PREFIX)msub
657 ETAGS                   = $(ETAGS_PREFIX)etags
658 VERBATIM                = $(VERBATIM_PREFIX)verbatim
659 SGMLVERB                = $(SGMLVERB_PREFIX)sgmlverb
660 SGML2LATEX              = sgml2latex
661 RUNTEST                 = $(RUNTEST_PREFIX)runstdtest
662 HAPPY                   = @HappyCmd@
663 HAPPY_VERSION           = @HappyVersion@                
664 LX                      = @LxCmd@
665 GREENCARD               = @GreencardCmd@
666
667 #
668 # Stuff from fptools/literate
669 #
670 INFO                    = $(UTIL_PREFIX)info
671 MAKEINFO                = $(INFO_PREFIX)makeinfo
672 POSTMAKEINFO            = $(INFO_PREFIX)postmakeinfo
673 LIT2PGM                 = $(LITERATE_PREFIX)lit2pgm
674 LIT2TEXI                = $(LITERATE_PREFIX)lit2texi
675 LIT2HTML                = $(LITERATE_PREFIX)lit2html
676 LIT2LATEX               = $(LITERATE_PREFIX)lit2latex
677 MKDEPENDLIT             = $(LITERATE_PREFIX)mkdependlit
678 LIT2CHANGELOG           = $(LITERATE_PREFIX)lit2changelog
679 LIT2TEXT                = $(LITERATE_PREFIX)lit2text
680 TEXI2HTML               = $(TEXI2HTML_PREFIX)texi2html
681
682 #
683 # Stuff from fptools/ghc/utils
684 #
685 UNLIT                   = $(UNLIT_PREFIX)unlit
686 UGEN                    = $(UGEN_PREFIX)ugen
687 STAT2RESID              = $(STAT2RESID_PREFIX)stat2resid
688 HP2PS                   = $(HP2PS_PREFIX)hp2ps
689 HSCPP                   = $(HSCPP_PREFIX)hscpp
690 HSTAGS                  = $(HSTAGS_PREFIX)hstags
691
692 #
693 # Options for the compiling different `ways'. Various projects within
694 # the glorious fptools tree support building in various user-configured
695 # ways. For instance, you could set up one `way' such that the prelude
696 # libraries and hslibs all were built with the option -ffoldr-build-on.
697
698 # To configure up your own way, have a look at some of the standard ways
699 # such as profiling, and create your own set of WAY_*_OPTS defs below.
700 # After having done that, add your way string to WAYS, and after having
701 # run the configure script, the different projects will add the new way
702 # to the list of ways they support.
703 #
704
705 #
706 # IMPORTANT! The WAYS variable configures the different `ways'
707 # you want to build a project (or maybe just parts of it, as is
708 # the case for ghc/). This variable is intended set inside the
709 # project mk setup, enforcing a global fptools WAYS is a bit too
710 # much (do you *really* want to build glafp-utils the profiled-concurrent 
711 # way?)
712 #
713
714 #
715 # Definitions of the different ways:
716 #   
717 #   * their name:
718 #          - tag, e.g., p
719 #          - description, e.g., profiling
720 #   * what they mean to the driver:
721 #          - WAY_p_HC_OPTS gives the list of command-line options
722 #            to the driver.
723 #
724
725 #
726 # The ways currently defined.
727 #
728 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
729
730 #
731 # The following ways currently have treated specially, p u t mc mt my mp mg 1s 2d du,
732 # as the driver script treats these guys specially and needs to carefully be told
733 # about the options for these. Hence, we hide the required command line options
734 # for these in the ghc/driver, as this is the only place they are needed.
735
736 # If you want to add to these default options, fill in the variables below:
737
738 WAY_p_NAME=profiling
739 WAY_p_HC_OPTS= -prof
740
741 # Way t:
742 WAY_t_NAME=ticky-ticky profiling
743 WAY_t_HC_OPTS= -ticky
744
745 # Way `u':
746 WAY_u_NAME=unregisterized (using portable C only)
747 WAY_u_HC_OPTS=
748
749 # Way `mc': concurrent
750 WAY_mc_NAME=concurrent
751 WAY_mc_HC_OPTS=-concurrent
752
753 # Way `mr': 
754 WAY_mr_NAME=profiled concurrent
755 WAY_mr_HC_OPTS=-prof -concurrent
756
757 # Way `mt': 
758 WAY_mt_NAME=ticky-ticky concurrent
759 WAY_mt_HC_OPTS=-ticky -concurrent
760
761 # Way `mp': 
762 WAY_mp_NAME=parallel
763 WAY_mp_HC_OPTS=-parallel
764
765 #
766 # Way `mg': 
767 #
768 WAY_mg_NAME=GranSim
769 WAY_mg_HC_OPTS=-gransim
770
771 #
772 # Ways for different garbage collectors
773 #
774 WAY_2s_NAME=2-space GC
775 WAY_2s_HC_OPTS=-2s
776
777 WAY_1s_NAME=1-space GC
778 WAY_1s_HC_OPTS=-1s
779
780 WAY_du_NAME=dual-mode GC
781 WAY_du_HC_OPTS=-du
782
783 #
784 # Add user-way configurations here:
785 #
786 WAY_A_NAME=
787 WAY_A_HC_OPTS=
788
789 WAY_B_NAME=
790 WAY_B_HC_OPTS=
791
792 WAY_a_NAME=
793 WAY_a_HC_OPTS=
794
795 WAY_b_NAME=
796 WAY_b_HC_OPTS=
797
798 WAY_c_NAME=
799 WAY_c_HC_OPTS=
800
801 WAY_d_NAME=
802 WAY_d_HC_OPTS=
803
804 WAY_e_NAME=
805 WAY_e_HC_OPTS=
806
807 WAY_f_NAME=
808 WAY_f_HC_OPTS=
809
810 WAY_g_NAME=
811 WAY_g_HC_OPTS=
812
813 WAY_h_NAME=
814 WAY_h_HC_OPTS=
815
816 WAY_i_NAME=
817 WAY_i_HC_OPTS=
818
819 WAY_j_NAME=
820 WAY_j_HC_OPTS=
821
822 WAY_k_NAME=
823 WAY_k_HC_OPTS=
824
825 WAY_l_NAME=
826 WAY_l_HC_OPTS=
827
828 WAY_m_NAME=
829 WAY_m_HC_OPTS=
830
831 WAY_n_NAME=
832 WAY_n_HC_OPTS=
833
834 WAY_o_NAME=
835 WAY_o_HC_OPTS=