[project @ 1997-12-17 13:41:42 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      = 2.10
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 #   Ghc2_0         Whether this compiler is GHC 2.0 or later
161 #                  (which affects gruesome details about
162 #                  how mutually recursive modules are handled)
163 #
164 #   WithGhcHcType  What "type" of compiler is being used
165 #                  Valid options:
166 #                            HC_CHALMERS_HBC
167 #                            HC_GLASGOW_GHC
168 #                            HC_ROJEMO_NHC
169 #                            HC_UNSPECIFIED
170
171 WithGhcHc = ghc-0.29
172 Ghc2_0=NO
173
174 # Unused, we think
175 # WithGhcHcType=HC_GLASGOW_GHC
176
177 # Extra ways in which to build the compiler (for example, you might want to
178 # build a profiled compiler so you can see where it spends its time)
179 GhcCompilerWays=
180
181 # Extra option flags to pass to the compiler that compiles the compiler
182 # (Ones that are essential are wired into ghc/compiler/Makefile)
183 # Typical ones:
184 #       -H25m           allocate a bigger heap (default is 6m)
185 #
186 #       -O              compile an optimised compiler
187 #                       NB! If you add -O you'll almost certainly need to increase
188 #                       the amount of heap space too (to 15m or more)
189 #
190 #       -DDEBUG         include consistency/assertion checks in the compiled compiler
191 #
192 #       -dcore-lint     check the types after every pass of the compiler;
193 #                       a pretty strong internal check
194 GhcHcOpts=
195
196 # GhcWithHscBuiltViaC - build GHC compiler proper (\`hsc') from .hc files?
197 GhcWithHscBuiltViaC=NO
198
199 # Build hsc with -O and turn optimising flag on when compiling
200 # the intermediate C file
201 GhcUseGccForOptAsm=YES
202
203 # Compile intermediate C file with debugging options set.
204 GhcUseGccForDebuggingAsm=YES
205
206 # Build a registerised version of hsc and runtime
207 # (you'd be desperate or silly not to).
208 GhcWithRegisterised=YES
209
210 # Build a compiler with a native code generator backend
211 # (as well as a C backend)
212 #
213 # Target platforms supported:
214 #   i386, alpha & sparc
215 GhcWithNativeCodeGen=$(shell if (test x$(findstring $(HostArch_CPP),i386 alpha sparc) = x); then echo NO; else echo YES; fi)
216
217 #
218 # Building various ways?
219 # (right now, empty if not).
220 BuildingParallel=$(subst mp,YES,$(filter mp,$(WAYS)))
221 BuildingConcurrent=$(subst mc,YES,$(filter mc,$(WAYS)))
222 BuildingProfiling=$(subst p,YES,$(filter p,$(WAYS)))
223 BuildingGranSim=$(subst mg,YES,$(filter mg,$(WAYS)))
224 BuildingProfilingConcurrent=$(subst mr,YES,$(filter mr,$(WAYS)))
225
226 #---------------------------------------------------------------
227 #
228 # Variables that control how the prelude libraries and runtime system are built
229
230 # What extra ways to build the libraries in
231 # In addition to the normal sequential way, the default is to also build
232 # profiled prelude libraries.
233 GhcLibWays=p
234
235 # Option flags to pass to GHC when it's compiling prelude modules
236 # Typically these are things like -O or -dcore-lint
237 # The ones that are *essential* are wired into ghc/lib/Makefile
238 #
239 #       -O is pretty desirable, otherwise no inlining of prelude
240 #               things (incl "+") happens when compiling with this compiler
241
242 #
243 # Splitting profiled code produces awfully large archives under ELF, so
244 # we turn it off here.
245 #
246 # ToDo: track down the source of this.
247 #
248 ifneq "$(strip $(way))" "p"
249 GhcLibHcOpts= -O -split-objs -odir $*
250 else
251 GhcLibHcOpts= -O
252 endif
253
254 # what to include in a binary distribution
255
256 GhcMainDir = ghc
257 GhcBinDistDirs = ghc hslibs
258 GhcBinDistDocs = docs ghc/docs/users_guide ghc/docs/libraries
259 GhcBinDistPrlScripts = ghc stat2resid hstags mkdependHS
260 GhcBinDistLibPrlScripts = hscpp
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 # The compiler proper is built with the 1.2 compiler,
534 # so when building the dependencies, we need mkdependHS
535 # for the 1.2 compiler.
536 #
537 MKDEPENDHS_1_2  = mkdependHS-1.2
538
539 #-----------------------------------------------------------------------------
540 # C compiler
541 #
542 #
543 HaveGcc         = @HaveGcc@
544 UseGcc          = YES
545 WhatGccIsCalled = gcc
546 ifeq "$(strip $(HaveGcc))" "YES"
547 ifneq "$(strip $(UseGcc))"  "YES"
548   CC    = cc
549 else
550   CC    = $(WhatGccIsCalled)
551 endif
552 endif
553
554 #-----------------------------------------------------------------------------
555 # Flex
556
557 FLEX                    = @LEX@
558 FLEX_LIB                = @LEXLIB@
559
560 #-----------------------------------------------------------------------------
561 # Other standard (ha!) Unix utilities
562
563 AR                      = @ArCmd@
564 # Yuckage: for ghc/utils/parallel -- todo: nuke this dependency!!
565 BASH                    = /usr/local/bin/bash
566 #
567 # Could be either gzip or compress
568 #
569 COMPRESS                = @CompressCmd@
570 COMPRESS_SUFFIX         = @CompressSuffix@
571
572 CONTEXT_DIFF            = @ContextDiffCmd@
573 CP                      = cp
574 CPP                     = @RAWCPP@
575 CTAGS                   = $(ETAGS)
576 RAWCPP                  = @RAWCPP@
577 GNUCPP                  = @GNUCPP@
578 INSTALL                 = @INSTALL@
579 #
580 # Sigh - the autoconf macro for INSTALL will subst a relative path to the fallback
581 # install-sh script (if chosen). This not terribly useful to us, so we convert
582 # it into an abs. path.
583
584 INSTALL                 := $(subst .././install-sh,$(FPTOOLS_TOP_ABS)/install-sh,$(INSTALL))
585 LATEX                   = latex
586 LN_S                    = @LN_S@
587 MANMACROS               = -man
588 MSMACROS                = -ms
589 MV                      = mv
590 NROFF                   = nroff
591 PERL                    = @PerlCmd@
592 PIC                     = pic
593 PREPROCESSCMD           = $(CC) -E
594 PRINTER                 = lpr
595 RANLIB                  = @RANLIB@
596 RM                      = rm -f
597 SED                     = @SedCmd@
598 SHELL                   = /bin/sh
599 #
600 # In emergency situations, REAL_SHELL is used to perform shell commands
601 # from within the ghc driver script, by scribbling the command line to
602 # a temp file and then having $(REAL_SHELL) execute it. 
603 #
604 # The reason for having to do this is that overly long command lines
605 # cause unnecessary trouble with some shells (e.g., /bin/sh on Solaris
606 # 2.5.1), which is why this backdoor is provided. The situation of overly
607 # long command lines is either encountered while doing `make boot' in ghc/compiler, 
608 # or when linking the compiler binary (`hsc'). 
609 #
610 # We do not use SHELL to execute long commands, as `make' will more than likely
611 # override whatever setting you have in your environment while executing. 
612
613 # By default, REAL_SHELL is set equal SHELL, which is not really a smart move
614 # as it SHELL that will show up the bogosity in the first place, but setting
615 # it to anything else isn't really portable.
616 #
617 #  ====> If long command lines cause you trouble, invoke `ghc' (via `make' or otherwise)
618 # with REAL_SHELL set to something else than /bin/sh, for instance, your favourite
619 # command shell.
620 #
621 REAL_SHELL=$(SHELL)
622 SIZE                    = size
623 STRIP                   = strip
624 TAR                     = @TarCmd@
625
626 #
627 # Under cygwin32, we have to deal with .exe suffixes
628 #
629 EXE_SUFFIX=@ExeSuffix@
630
631 #
632 # This is special to literate/, ToDo: add literate-specific
633 # configure setup to literate/.
634 #
635 TBL                     = tbl
636 TEX                     = tex
637 TGRIND                  = tgrind
638 TGRIND_HELPER           = /usr/local/lib/tgrind/tfontedpr # XXX
639 TIB                     = tib
640
641 TIME                    = @TimeCmd@
642 TROFF                   = troff
643 UNAME                   = uname
644 YACC                    = @YaccCmd@
645
646 #-----------------------------------------------------------------------------
647 # SGML stuff (currently not configured - we assume you have it)
648
649 SGML2LATEX              = sgml2latex
650 SGML2HTML               = sgml2html
651 SGML2INFO               = sgml2info
652 SGML2TXT                = sgml2txt
653
654 #-----------------------------------------------------------------------------
655 #               FPtools support software
656
657 # Stuff from fptools/glafp-utils
658 MKDEPENDC               = $(MKDEPENDC_PREFIX)mkdependC
659 FASTMAKE                = $(FASTMAKE_PREFIX)fastmake
660 LTX                     = $(LTX_PREFIX)ltx
661 MKDIRHIER               = $(MKDIRHIER_PREFIX)mkdirhier
662 LNDIR                   = $(LNDIR_PREFIX)lndir
663 MSUB                    = $(MSUB_PREFIX)msub
664 ETAGS                   = $(ETAGS_PREFIX)etags
665 VERBATIM                = $(VERBATIM_PREFIX)verbatim
666 SGMLVERB                = $(SGMLVERB_PREFIX)sgmlverb
667 SGML2LATEX              = sgml2latex
668 RUNTEST                 = $(RUNTEST_PREFIX)runstdtest
669 HAPPY                   = @HappyCmd@
670 HAPPY_VERSION           = @HappyVersion@                
671 LX                      = @LxCmd@
672 GREENCARD               = @GreencardCmd@
673
674 ifeq "$(HAPPY)" ""
675 HAPPY                   = $(HAPPY_PREFIX)happy
676 endif
677
678 #
679 # Stuff from fptools/literate
680 #
681 INFO                    = $(UTIL_PREFIX)info
682 MAKEINFO                = $(INFO_PREFIX)makeinfo
683 POSTMAKEINFO            = $(INFO_PREFIX)postmakeinfo
684 LIT2PGM                 = $(LITERATE_PREFIX)lit2pgm
685 LIT2TEXI                = $(LITERATE_PREFIX)lit2texi
686 LIT2HTML                = $(LITERATE_PREFIX)lit2html
687 LIT2LATEX               = $(LITERATE_PREFIX)lit2latex
688 MKDEPENDLIT             = $(LITERATE_PREFIX)mkdependlit
689 LIT2CHANGELOG           = $(LITERATE_PREFIX)lit2changelog
690 LIT2TEXT                = $(LITERATE_PREFIX)lit2text
691 TEXI2HTML               = $(TEXI2HTML_PREFIX)texi2html
692
693 #
694 # Stuff from fptools/ghc/utils
695 #
696 UNLIT                   = $(UNLIT_PREFIX)unlit
697 UGEN                    = $(UGEN_PREFIX)ugen
698 STAT2RESID              = $(STAT2RESID_PREFIX)stat2resid
699 HP2PS                   = $(HP2PS_PREFIX)hp2ps
700 HSCPP                   = $(HSCPP_PREFIX)hscpp
701 HSTAGS                  = $(HSTAGS_PREFIX)hstags
702
703 #
704 # Options for the compiling different `ways'. Various projects within
705 # the glorious fptools tree support building in various user-configured
706 # ways. For instance, you could set up one `way' such that the prelude
707 # libraries and hslibs all were built with the option -ffoldr-build-on.
708
709 # To configure up your own way, have a look at some of the standard ways
710 # such as profiling, and create your own set of WAY_*_OPTS defs below.
711 # After having done that, add your way string to WAYS, and after having
712 # run the configure script, the different projects will add the new way
713 # to the list of ways they support.
714 #
715
716 #
717 # IMPORTANT! The WAYS variable configures the different `ways'
718 # you want to build a project (or maybe just parts of it, as is
719 # the case for ghc/). This variable is intended set inside the
720 # project mk setup, enforcing a global fptools WAYS is a bit too
721 # much (do you *really* want to build glafp-utils the profiled-concurrent 
722 # way?)
723 #
724
725 #
726 # Definitions of the different ways:
727 #   
728 #   * their name:
729 #          - tag, e.g., p
730 #          - description, e.g., profiling
731 #   * what they mean to the driver:
732 #          - WAY_p_HC_OPTS gives the list of command-line options
733 #            to the driver.
734 #
735
736 #
737 # The ways currently defined.
738 #
739 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
740
741 #
742 # The following ways currently have treated specially, p u t mc mt my mp mg 1s 2d du,
743 # as the driver script treats these guys specially and needs to carefully be told
744 # about the options for these. Hence, we hide the required command line options
745 # for these in the ghc/driver, as this is the only place they are needed.
746
747 # If you want to add to these default options, fill in the variables below:
748
749 WAY_p_NAME=profiling
750 WAY_p_HC_OPTS= -prof
751
752 # Way t:
753 WAY_t_NAME=ticky-ticky profiling
754 WAY_t_HC_OPTS= -ticky
755
756 # Way `u':
757 WAY_u_NAME=unregisterized (using portable C only)
758 WAY_u_HC_OPTS=
759
760 # Way `mc': concurrent
761 WAY_mc_NAME=concurrent
762 WAY_mc_HC_OPTS=-concurrent
763
764 # Way `mr': 
765 WAY_mr_NAME=profiled concurrent
766 WAY_mr_HC_OPTS=-prof -concurrent
767
768 # Way `mt': 
769 WAY_mt_NAME=ticky-ticky concurrent
770 WAY_mt_HC_OPTS=-ticky -concurrent
771
772 # Way `mp': 
773 WAY_mp_NAME=parallel
774 WAY_mp_HC_OPTS=-parallel
775
776 #
777 # Way `mg': 
778 #
779 WAY_mg_NAME=GranSim
780 WAY_mg_HC_OPTS=-gransim
781
782 #
783 # Ways for different garbage collectors
784 #
785 WAY_2s_NAME=2-space GC
786 WAY_2s_HC_OPTS=-2s
787
788 WAY_1s_NAME=1-space GC
789 WAY_1s_HC_OPTS=-1s
790
791 WAY_du_NAME=dual-mode GC
792 WAY_du_HC_OPTS=-du
793
794 #
795 # Add user-way configurations here:
796 #
797 WAY_A_NAME=
798 WAY_A_HC_OPTS=
799
800 WAY_B_NAME=
801 WAY_B_HC_OPTS=
802
803 WAY_a_NAME=
804 WAY_a_HC_OPTS=
805
806 WAY_b_NAME=
807 WAY_b_HC_OPTS=
808
809 WAY_c_NAME=
810 WAY_c_HC_OPTS=
811
812 WAY_d_NAME=
813 WAY_d_HC_OPTS=
814
815 WAY_e_NAME=
816 WAY_e_HC_OPTS=
817
818 WAY_f_NAME=
819 WAY_f_HC_OPTS=
820
821 WAY_g_NAME=
822 WAY_g_HC_OPTS=
823
824 WAY_h_NAME=
825 WAY_h_HC_OPTS=
826
827 WAY_i_NAME=
828 WAY_i_HC_OPTS=
829
830 WAY_j_NAME=
831 WAY_j_HC_OPTS=
832
833 WAY_k_NAME=
834 WAY_k_HC_OPTS=
835
836 WAY_l_NAME=
837 WAY_l_HC_OPTS=
838
839 WAY_m_NAME=
840 WAY_m_HC_OPTS=
841
842 WAY_n_NAME=
843 WAY_n_HC_OPTS=
844
845 WAY_o_NAME=
846 WAY_o_HC_OPTS=