[project @ 1997-12-22 13:33:14 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 ifeq "$(strip $(way))" "p"
249 GhcLibHcOpts= -O
250 else 
251 ifeq "$(strip $(way))" "mr"
252 GhcLibHcOpts= -O
253 else
254 GhcLibHcOpts= -O -split-objs -odir $*
255 endif
256 endif
257
258 # what to include in a binary distribution
259
260 GhcMainDir = ghc
261 GhcBinDistDirs = ghc hslibs
262 GhcBinDistDocs = docs ghc/docs/users_guide ghc/docs/libraries
263 GhcBinDistPrlScripts = ghc stat2resid hstags mkdependHS
264 GhcBinDistLibPrlScripts = hscpp
265 GhcBinDistBins = hp2ps
266
267 #################################################################################
268 #
269 #               hslibs project
270 #
271 #       Set of (configurable) options needed by the Haskell libraries (hslibs)
272 #       plus their default options (if any).
273 #
274 #################################################################################
275
276 # Build the Haskell Readline bindings?
277 #
278 HsLibsWithReadline=NO
279 #
280 # Include path to readline.h
281 # (no path == in standard include path)
282 #
283 ReadlineIncludePath=
284
285 # Build the socket libraries?
286 #
287 HsLibsWithSockets=YES
288
289 #
290 # The different ways to build hslibs. Default is just to mirror
291 # what is done for the ghc prelude libraries.
292 #
293 HsLibWays=$(GhcLibWays)
294
295 # Option flags for hslibs are by default the same as for the options
296 # used for the prelude libs (see above).
297 HsLibHcOpts=$(GhcLibHcOpts)
298
299 #################################################################################
300 #
301 #               happy project
302 #
303 #       Happy specific options
304 #
305 #################################################################################
306
307 #
308 # Name variables for happy:
309 #
310 HappyProjectName       = Happy
311 HappyProjectNameShort  = happy
312 HappyProjectVersion    = 1.5
313 HappyProjectPatchLevel = 0
314
315 # The compiler you'd like to use to compile Happy
316 WithHappyHc = $(WithGhcHc)
317
318 # HappyHcOpts gives the flags to pass to the Haskell compiler used
319 #             to compile the Happy sources with.
320 #
321 HappyHcOpts = 
322
323 # what to include in a binary distribution
324
325 HappyMainDir = happy
326 HappyBinDistDirs = happy
327 HappyBinDistDocs = happy/doc
328 HappyBinDistShScripts = happy
329
330 #################################################################################
331 #
332 #               haggis project
333 #
334 #       Haggis specific options
335 #
336 #################################################################################
337
338 #################################################################################
339 #
340 #               green-card project
341 #
342 #       Green-card specific options
343 #
344 #################################################################################
345
346
347 #################################################################################
348 #
349 #               nofib project
350 #
351 #       nofib specific options
352 #
353 #################################################################################
354
355
356 # NoFibSubDirs controls which set of tests should be run
357 # You can run one or more of
358 #       imaginary 
359 #       spectral
360 #       real
361 #       parallel
362 #       PRIVATE
363 #       GHC_ONLY
364 #       PENDING
365 #       UNUSED
366 NoFibSubDirs = imaginary spectral real GHC_ONLY PRIVATE
367
368 # The different ways to build nofib. Default is just to mirror
369 # what is done for the ghc prelude libraries.
370 #
371 NoFibWays=$(GhcLibWays)
372
373 # Haskell compiler options for nofib
374 NoFibHcOpts=
375
376 # ==============================================================================
377 #
378 #                       END OF PROJECT-SPECIFIC STUFF
379 #
380 #               Now come the generic configuration options
381 #
382 # ==============================================================================
383
384 #################################################################################
385 #
386 #               Paths (see paths.mk)
387 #
388 #################################################################################
389
390 TMPDIR                  = /tmp
391
392 # FPTOOLS_TOP: the top of the fptools hierarchy, absolute path.
393
394 FPTOOLS_TOP_ABS         = @hardtop@
395
396 #
397 # Installation directories, we don't use half of these,
398 # but since the configure script has them on offer while
399 # passing through, we might as well set them.
400
401 prefix                  = @prefix@
402 exec_prefix             = @exec_prefix@
403 bindir                  = @bindir@
404 #UNUSED, see below: libexecdir              = @libexecdir@
405 datadir                 = @datadir@
406 #sysconfdir              = @datadir@
407 #sharedstatedir          = @sharedstatedir@
408 #localstatedir           = @localstatedir@
409 libdir                  = @libdir@
410 infodir                 = @infodir@
411 includedir              = @includedir@
412 oldincludedir           = @oldincludedir@
413 mandir                  = @mandir@
414 #UNUSED:srcdir          = @srcdir@
415
416
417 # Default values for most of the above are only set if
418 # they weren't configured to anything in particular
419 # via the configure script. (i.e., we make no assumption
420 # that the autoconf-generated script will assign defaults
421 # to all of the above).
422 #
423 ifeq "$(strip $(exec_prefix))" ""
424 exec_prefix             = $(prefix)
425 endif
426 ifeq "$(strip $(bindir))" ""
427 bindir                  = $(exec_prefix)/bin
428 endif
429
430 #
431 # NOTE: by intention, libexecdir and libdir point to 
432 # the same place.
433 #  => Only way to override this is to set libexecdir= on the command line.
434 #     (NOTE: configure script setting is ignored).
435 libexecdir              = $(libdir)
436
437 ifeq "$(strip $(datadir))" ""
438 datadir         = $(prefix)/share
439 endif
440 ifeq "$(strip $(libdir))" ""
441 libdir          = $(exec_prefix)/lib
442 endif
443 ifeq "$(strip $(infodir))" ""
444 infodir         = $(prefix)/info
445 endif
446 ifeq "$(strip $(includedir))" ""
447 includedir      = $(prefix)/include
448 endif
449 ifeq "$(strip $(oldincludedir))" ""
450 oldincludedir   = /usr/include
451 endif
452 ifeq "$(strip $(mandir))" ""
453 mandir          = $(prefix)/man
454 endif
455  
456
457 #################################################################################
458 #
459 #               Utilities programs: flags
460 #
461 #################################################################################
462
463 # If you want to give any standard flags to pretty much any utility
464 # (see utils.mk for a complete list), by adding a line here
465 #
466 #       SRC_P_OPTS += ...
467 #
468 # where P is the utility. For example, to add -O to all Haskell
469 # compilations, 
470 #
471 #       SRC_HC_OPTS += -O
472
473
474 #################################################################################
475 #
476 #               Utilities programs: where to find them
477 #
478 #################################################################################
479
480 #-----------------------------------------------------------------------------
481 # FPtools Utility locations
482
483 # By default, the various utils needed to be build ghc and chums
484 # is set up to point to the utils/ directory. Define here the
485 # path prefix for the utilities. Notice that it's a prefix with
486 # a trailing slash, so that it can be concatenated directly on
487 # front of a program name; if it's not set then we just look
488 # along the shell's $(PATH)
489 #
490 # If instead you want to use installed or your own versions of these,
491 # override the various *_PREFIX in build.mk, i.e., having the following
492 # in build.mk:
493 #
494 #   FASTMAKE_PREFIX=
495 #
496 # will force `make' to rummage around in your PATH to find `fastmake' (not
497 # sure it would need it in the first place, but still).
498 #
499 GLAFP_UTILS             = $(FPTOOLS_TOP)/glafp-utils
500
501 SCRIPT_PREFIX           = $(GLAFP_UTILS)/scripts/
502 FASTMAKE_PREFIX         = $(GLAFP_UTILS)/fastmake/
503 MKDEPENDC_PREFIX        = $(GLAFP_UTILS)/mkdependC/
504 LTX_PREFIX              = $(GLAFP_UTILS)/ltx/
505 RUNTEST_PREFIX          = $(GLAFP_UTILS)/runstdtest/
506 VERBATIM_PREFIX         = $(GLAFP_UTILS)/verbatim/
507 SGMLVERB_PREFIX         = $(GLAFP_UTILS)/sgmlverb/
508 ETAGS_PREFIX            = $(GLAFP_UTILS)/etags/
509 MSUB_PREFIX             = $(GLAFP_UTILS)/msub/
510 LNDIR_PREFIX            = $(GLAFP_UTILS)/lndir/
511 MKDIRHIER_PREFIX        = $(GLAFP_UTILS)/mkdirhier/
512
513 # Still used?
514 LITERATE                = $(FPTOOLS_TOP)/literate
515
516 LITERATE_PREFIX         = $(FPTOOLS_TOP)/literate/
517 INFO_PREFIX             = $(FPTOOLS_TOP)/literate/info-utils/
518 TEXI2HTML_PREFIX        = $(LITERATE_PREFIX)texi2html/
519
520 HAPPY_PREFIX            = $(FPTOOLS_TOP)/happy/src/
521 GREENCARD_PREFIX        = $(FPTOOLS_TOP)/green-card/src/
522
523 UNLIT_PREFIX            = $(FPTOOLS_TOP)/ghc/utils/unlit/
524 UGEN_PREFIX             = $(FPTOOLS_TOP)/ghc/utils/ugen/
525 STAT2RESID_PREFIX       = $(FPTOOLS_TOP)/ghc/utils/stat2resid/
526 HP2PS_PREFIX            = $(FPTOOLS_TOP)/ghc/utils/hp2ps/
527 HSCPP_PREFIX            = $(FPTOOLS_TOP)/ghc/utils/hscpp/
528 HSTAGS_PREFIX           = $(FPTOOLS_TOP)/ghc/utils/hstags/
529
530
531 #-----------------------------------------------------------------------------
532 # Haskell compiler and mkdependHS
533
534 HC              = $(FPTOOLS_TOP)/ghc/driver/ghc
535 MKDEPENDHS      = $(HC)
536
537 #
538 # The compiler proper is built with the 1.2 compiler,
539 # so when building the dependencies, we need mkdependHS
540 # for the 1.2 compiler.
541 #
542 MKDEPENDHS_1_2  = mkdependHS-1.2
543
544 #-----------------------------------------------------------------------------
545 # C compiler
546 #
547 #
548 HaveGcc         = @HaveGcc@
549 UseGcc          = YES
550 WhatGccIsCalled = gcc
551 ifeq "$(strip $(HaveGcc))" "YES"
552 ifneq "$(strip $(UseGcc))"  "YES"
553   CC    = cc
554 else
555   CC    = $(WhatGccIsCalled)
556 endif
557 endif
558
559 #-----------------------------------------------------------------------------
560 # Flex
561
562 FLEX                    = @LEX@
563 FLEX_LIB                = @LEXLIB@
564
565 #-----------------------------------------------------------------------------
566 # Other standard (ha!) Unix utilities
567
568 AR                      = @ArCmd@
569 # Yuckage: for ghc/utils/parallel -- todo: nuke this dependency!!
570 BASH                    = /usr/local/bin/bash
571 #
572 # Could be either gzip or compress
573 #
574 COMPRESS                = @CompressCmd@
575 COMPRESS_SUFFIX         = @CompressSuffix@
576
577 CONTEXT_DIFF            = @ContextDiffCmd@
578 CP                      = cp
579 CPP                     = @RAWCPP@
580 CTAGS                   = $(ETAGS)
581 RAWCPP                  = @RAWCPP@
582 GNUCPP                  = @GNUCPP@
583 INSTALL                 = @INSTALL@
584 #
585 # Sigh - the autoconf macro for INSTALL will subst a relative path to the fallback
586 # install-sh script (if chosen). This not terribly useful to us, so we convert
587 # it into an abs. path.
588
589 INSTALL                 := $(subst .././install-sh,$(FPTOOLS_TOP_ABS)/install-sh,$(INSTALL))
590 LATEX                   = latex
591 LN_S                    = @LN_S@
592 MANMACROS               = -man
593 MSMACROS                = -ms
594 MV                      = mv
595 NROFF                   = nroff
596 PERL                    = @PerlCmd@
597 PIC                     = pic
598 PREPROCESSCMD           = $(CC) -E
599 PRINTER                 = lpr
600 RANLIB                  = @RANLIB@
601 RM                      = rm -f
602 SED                     = @SedCmd@
603 SHELL                   = /bin/sh
604 #
605 # In emergency situations, REAL_SHELL is used to perform shell commands
606 # from within the ghc driver script, by scribbling the command line to
607 # a temp file and then having $(REAL_SHELL) execute it. 
608 #
609 # The reason for having to do this is that overly long command lines
610 # cause unnecessary trouble with some shells (e.g., /bin/sh on Solaris
611 # 2.5.1), which is why this backdoor is provided. The situation of overly
612 # long command lines is either encountered while doing `make boot' in ghc/compiler, 
613 # or when linking the compiler binary (`hsc'). 
614 #
615 # We do not use SHELL to execute long commands, as `make' will more than likely
616 # override whatever setting you have in your environment while executing. 
617
618 # By default, REAL_SHELL is set equal SHELL, which is not really a smart move
619 # as it SHELL that will show up the bogosity in the first place, but setting
620 # it to anything else isn't really portable.
621 #
622 #  ====> If long command lines cause you trouble, invoke `ghc' (via `make' or otherwise)
623 # with REAL_SHELL set to something else than /bin/sh, for instance, your favourite
624 # command shell.
625 #
626 REAL_SHELL=$(SHELL)
627 SIZE                    = size
628 STRIP                   = strip
629 TAR                     = @TarCmd@
630
631 #
632 # Under cygwin32, we have to deal with .exe suffixes
633 #
634 EXE_SUFFIX=@ExeSuffix@
635
636 #
637 # This is special to literate/, ToDo: add literate-specific
638 # configure setup to literate/.
639 #
640 TBL                     = tbl
641 TEX                     = tex
642 TGRIND                  = tgrind
643 TGRIND_HELPER           = /usr/local/lib/tgrind/tfontedpr # XXX
644 TIB                     = tib
645
646 TIME                    = @TimeCmd@
647 TROFF                   = troff
648 UNAME                   = uname
649 YACC                    = @YaccCmd@
650
651 #-----------------------------------------------------------------------------
652 # SGML stuff (currently not configured - we assume you have it)
653
654 SGML2LATEX              = sgml2latex
655 SGML2HTML               = sgml2html
656 SGML2INFO               = sgml2info
657 SGML2TXT                = sgml2txt
658
659 #-----------------------------------------------------------------------------
660 #               FPtools support software
661
662 # Stuff from fptools/glafp-utils
663 MKDEPENDC               = $(MKDEPENDC_PREFIX)mkdependC
664 FASTMAKE                = $(FASTMAKE_PREFIX)fastmake
665 LTX                     = $(LTX_PREFIX)ltx
666 MKDIRHIER               = $(MKDIRHIER_PREFIX)mkdirhier
667 LNDIR                   = $(LNDIR_PREFIX)lndir
668 MSUB                    = $(MSUB_PREFIX)msub
669 ETAGS                   = $(ETAGS_PREFIX)etags
670 VERBATIM                = $(VERBATIM_PREFIX)verbatim
671 SGMLVERB                = $(SGMLVERB_PREFIX)sgmlverb
672 SGML2LATEX              = sgml2latex
673 RUNTEST                 = $(RUNTEST_PREFIX)runstdtest
674 HAPPY                   = @HappyCmd@
675 HAPPY_VERSION           = @HappyVersion@                
676 LX                      = @LxCmd@
677 GREENCARD               = @GreencardCmd@
678
679 #
680 # Stuff from fptools/literate
681 #
682 INFO                    = $(UTIL_PREFIX)info
683 MAKEINFO                = $(INFO_PREFIX)makeinfo
684 POSTMAKEINFO            = $(INFO_PREFIX)postmakeinfo
685 LIT2PGM                 = $(LITERATE_PREFIX)lit2pgm
686 LIT2TEXI                = $(LITERATE_PREFIX)lit2texi
687 LIT2HTML                = $(LITERATE_PREFIX)lit2html
688 LIT2LATEX               = $(LITERATE_PREFIX)lit2latex
689 MKDEPENDLIT             = $(LITERATE_PREFIX)mkdependlit
690 LIT2CHANGELOG           = $(LITERATE_PREFIX)lit2changelog
691 LIT2TEXT                = $(LITERATE_PREFIX)lit2text
692 TEXI2HTML               = $(TEXI2HTML_PREFIX)texi2html
693
694 #
695 # Stuff from fptools/ghc/utils
696 #
697 UNLIT                   = $(UNLIT_PREFIX)unlit
698 UGEN                    = $(UGEN_PREFIX)ugen
699 STAT2RESID              = $(STAT2RESID_PREFIX)stat2resid
700 HP2PS                   = $(HP2PS_PREFIX)hp2ps
701 HSCPP                   = $(HSCPP_PREFIX)hscpp
702 HSTAGS                  = $(HSTAGS_PREFIX)hstags
703
704 #
705 # Options for the compiling different `ways'. Various projects within
706 # the glorious fptools tree support building in various user-configured
707 # ways. For instance, you could set up one `way' such that the prelude
708 # libraries and hslibs all were built with the option -ffoldr-build-on.
709
710 # To configure up your own way, have a look at some of the standard ways
711 # such as profiling, and create your own set of WAY_*_OPTS defs below.
712 # After having done that, add your way string to WAYS, and after having
713 # run the configure script, the different projects will add the new way
714 # to the list of ways they support.
715 #
716
717 #
718 # IMPORTANT! The WAYS variable configures the different `ways'
719 # you want to build a project (or maybe just parts of it, as is
720 # the case for ghc/). This variable is intended set inside the
721 # project mk setup, enforcing a global fptools WAYS is a bit too
722 # much (do you *really* want to build glafp-utils the profiled-concurrent 
723 # way?)
724 #
725
726 #
727 # Definitions of the different ways:
728 #   
729 #   * their name:
730 #          - tag, e.g., p
731 #          - description, e.g., profiling
732 #   * what they mean to the driver:
733 #          - WAY_p_HC_OPTS gives the list of command-line options
734 #            to the driver.
735 #
736
737 #
738 # The ways currently defined.
739 #
740 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
741
742 #
743 # The following ways currently have treated specially, p u t mc mt my mp mg 1s 2d du,
744 # as the driver script treats these guys specially and needs to carefully be told
745 # about the options for these. Hence, we hide the required command line options
746 # for these in the ghc/driver, as this is the only place they are needed.
747
748 # If you want to add to these default options, fill in the variables below:
749
750 WAY_p_NAME=profiling
751 WAY_p_HC_OPTS= -prof
752
753 # Way t:
754 WAY_t_NAME=ticky-ticky profiling
755 WAY_t_HC_OPTS= -ticky
756
757 # Way `u':
758 WAY_u_NAME=unregisterized (using portable C only)
759 WAY_u_HC_OPTS=
760
761 # Way `mc': concurrent
762 WAY_mc_NAME=concurrent
763 WAY_mc_HC_OPTS=-concurrent
764
765 # Way `mr': 
766 WAY_mr_NAME=profiled concurrent
767 WAY_mr_HC_OPTS=-prof -concurrent
768
769 # Way `mt': 
770 WAY_mt_NAME=ticky-ticky concurrent
771 WAY_mt_HC_OPTS=-ticky -concurrent
772
773 # Way `mp': 
774 WAY_mp_NAME=parallel
775 WAY_mp_HC_OPTS=-parallel
776
777 #
778 # Way `mg': 
779 #
780 WAY_mg_NAME=GranSim
781 WAY_mg_HC_OPTS=-gransim
782
783 #
784 # Ways for different garbage collectors
785 #
786 WAY_2s_NAME=2-space GC
787 WAY_2s_HC_OPTS=-2s
788
789 WAY_1s_NAME=1-space GC
790 WAY_1s_HC_OPTS=-1s
791
792 WAY_du_NAME=dual-mode GC
793 WAY_du_HC_OPTS=-du
794
795 #
796 # Add user-way configurations here:
797 #
798 WAY_A_NAME=
799 WAY_A_HC_OPTS=
800
801 WAY_B_NAME=
802 WAY_B_HC_OPTS=
803
804 WAY_a_NAME=
805 WAY_a_HC_OPTS=
806
807 WAY_b_NAME=
808 WAY_b_HC_OPTS=
809
810 WAY_c_NAME=
811 WAY_c_HC_OPTS=
812
813 WAY_d_NAME=
814 WAY_d_HC_OPTS=
815
816 WAY_e_NAME=
817 WAY_e_HC_OPTS=
818
819 WAY_f_NAME=
820 WAY_f_HC_OPTS=
821
822 WAY_g_NAME=
823 WAY_g_HC_OPTS=
824
825 WAY_h_NAME=
826 WAY_h_HC_OPTS=
827
828 WAY_i_NAME=
829 WAY_i_HC_OPTS=
830
831 WAY_j_NAME=
832 WAY_j_HC_OPTS=
833
834 WAY_k_NAME=
835 WAY_k_HC_OPTS=
836
837 WAY_l_NAME=
838 WAY_l_HC_OPTS=
839
840 WAY_m_NAME=
841 WAY_m_HC_OPTS=
842
843 WAY_n_NAME=
844 WAY_n_HC_OPTS=
845
846 WAY_o_NAME=
847 WAY_o_HC_OPTS=