f18a1e742b1cb9ba94bd9f0c0ca04c23f2bc9d44
[ghc-hetmet.git] / mk / config.mk.in
1 #
2 # @configure_input@
3 #
4 ################################################################################
5 #
6 #                       config.mk.in-template
7 #
8 #       This file defines all the variables that set the configuration of
9 #       a particular build.
10 #
11 #
12 ################################################################################
13
14 # The configuration is defined in two steps:
15 #
16 #       1. The builder (i.e. the person doing the build)
17 #          copies this file, config.mk.in-template
18 #          to config.mk.in
19 #
20 #       2. S/he then edits it manually (gasp) to reflect any configuration
21 #          options s/he wants.
22 #
23 #       3. Then s/he runs "configure", which generates config.mk from
24 #          config.mk.in, substituting for system/platform-dependent things
25 #          enclosed in @at-signs@.
26 #
27 # This is one of only two files that configure generates (the other is config.h)
28 #
29 # Note that after subsequent edits of config.mk.in for a build, the configure script
30 # will have to be re-run manually to have the change reflected in config.mk. 
31 #
32
33 # There is a section below for each project within the fptools suite
34 #
35 #       PLUS
36 #
37 # a section corresponding to each of the main .mk files 
38 # included by boilerplate.mk (see boilerplate.mk for a list).
39
40
41 ################################################################################
42 #
43 #               Project-wide platform variables
44 #
45 ################################################################################
46
47 # A "platform" is the GNU cpu-type/manufacturer/operating-system target machine
48 # specifier.  E.g. sparc-sun-solaris2
49
50 HOSTPLATFORM                    = @HostPlatform@
51 TARGETPLATFORM                  = @TargetPlatform@
52 BUILDPLATFORM                   = @HostPlatform@
53
54 # Hack alert:
55 # in one or two places, we need to get at the OS version (major and perhaps even minor),
56 # HostOS_Full is the OS name reported by AC_CANONICAL_SYSTEM.
57 #
58 HostPlatform_CPP                = @HostPlatform_CPP@
59 HostArch_CPP                    = @HostArch_CPP@
60 HostOS_CPP                      = @HostOS_CPP@
61 HostOS_Full                     = @HostOS_Full@
62 HostVendor_CPP                  = @HostVendor_CPP@
63
64 #
65 # ToDo: check if these can be purged now. -- sof
66 #
67
68 @HostPlatform_CPP@_HOST        = 1
69 @HostPlatform_CPP@_TARGET      = 1
70 @HostPlatform_CPP@_BUILD       = 1
71
72 @HostArch_CPP@_HOST_ARCH       = 1
73 @HostArch_CPP@_TARGET_ARCH      = 1
74 @HostArch_CPP@_BUILD_ARCH      = 1
75
76 @HostOS_CPP@_HOST_OS           = 1
77 @HostOS_CPP@_TARGET_OS         = 1
78 @HostOS_CPP@_BUILD_OS          = 1
79
80 @HostVendor_CPP@_HOST_VENDOR    = 1
81 @HostVendor_CPP@_TARGET_VENDOR  = 1
82 @HostVendor_CPP@_BUILD_VENDOR   = 1
83
84 # Leading underscores on symbol names in object files
85 # Valid options: YES/NO
86 #
87 LeadingUnderscore=@LeadingUnderscore@
88
89 # Pin a suffix on executables? If so, what. (cygwin32 only).
90 exeext=@exeext@
91
92 ################################################################################
93 #
94 #               project-wide flags
95 #
96 #       Set of options applicable to all fptools projects
97 #
98 ################################################################################
99
100 #
101 # What parts to build: An fptools build tree does not have to be built
102 # all in one go. By setting the list of ProjectsToBuild in build.mk you can
103 # control which projects are built.
104 #
105 # Caution: the projects are built in the order given here, so if some
106 # projects use others you must list them in the correct order.
107 #
108 # Generally:    * glafp-utils should be first
109 #               * happy next
110 #               * ghc next
111 #               then it's up to you
112
113 ProjectsToBuild   = glafp-utils ghc hslibs
114 #
115 # Make a distinction between building and installing
116 #
117 ProjectsToInstall = glafp-utils ghc hslibs
118
119 #
120 # Should the various project tests directories be built?
121 #
122 IncludeTestDirsInBuild=NO
123
124 ################################################################################
125 #
126 #               GHC project
127
128 #       Set of (configurable) options needed by the ghc tree
129 #       plus their default options (if any).
130 #
131 ################################################################################
132
133 #---------------------------------------------------------------
134 #
135 # Variables that control how the compiler itself is built
136 #
137 #---------------------------------------------------------------
138
139 # Specify the Haskell compiler to be used to compile the compiler itself
140 #
141 #   WithGhcHc      Path name of the compiler to use
142 #
143 #   WithGhcHcType  What "type" of compiler is being used
144 #                  Valid options:
145 #                            HC_CHALMERS_HBC
146 #                            HC_GLASGOW_GHC
147 #                            HC_ROJEMO_NHC
148 #                            HC_UNSPECIFIED
149
150 WithGhcHc = @WithHc@
151
152 # Variable which is set to the version number of the $(WithGhcHc) we're using.
153 # Not currently used, but might come in handy sometime soon.
154 #WithGhcHcVersion = $(shell echo `if ( $(WithGhcHc) --version 2>/dev/null >/dev/null ) then $(WithGhcHc) --version 2>&1 | @SedCmd@ -e 's/^.*version [^0-9]*\([.0-9]*\).*/\1/;s/\.//'; else echo unknown; fi; ` )
155
156 # Extra ways in which to build the compiler (for example, you might want to
157 # build a profiled compiler so you can see where it spends its time)
158 GhcCompilerWays=
159
160 # Extra option flags to pass to the compiler that compiles the compiler
161 # (Ones that are essential are wired into ghc/compiler/Makefile)
162 # Typical ones:
163 #       -H25m           allocate a bigger heap (might speed up compilation)
164 #
165 #       -O              compile an optimised compiler
166 #
167 #       -DDEBUG         include consistency/assertion checks in the compiled compiler
168 #
169 #       -dcore-lint     check the types after every pass of the compiler;
170 #                       a pretty strong internal check
171 GhcHcOpts=
172
173 # GhcWithHscBuiltViaC - build GHC compiler proper (\`hsc') from .hc files?
174 GhcWithHscBuiltViaC=@BootingFromHc@
175
176 # Build a registerised version of hsc and runtime
177 # (unregisterised used for Hugs at the moment)
178 GhcWithRegisterised=YES
179
180 # Build a compiler with a native code generator backend
181 # (as well as a C backend)
182 #
183 # Target platforms supported:
184 #   i386, alpha & sparc
185 GhcWithNativeCodeGen=$(shell if (test x$(findstring $(HostArch_CPP),i386 alpha sparc) = x); then echo NO; else echo YES; fi)
186
187 #
188 # Building various ways?
189 # (right now, empty if not).
190 BuildingParallel=$(subst mp,YES,$(filter mp,$(WAYS)))
191 BuildingGranSim=$(subst mg,YES,$(filter mg,$(WAYS)))
192
193 # Include compiler support for letting the compiler (optionally) report
194 # your compilation to a central server for generation of fun stats.
195 #
196 GhcReportCompiles=NO
197
198 #------------------------------------------------------------------------------
199 # Options for GHC's Prelude
200
201 # What extra ways to build the libraries in
202 # In addition to the normal sequential way, the default is to also build
203 # profiled prelude libraries.
204 # When booting from .hc files, turn this off.
205 ifeq "$(GhcWithHscBuiltViaC)" "YES"
206 GhcLibWays=
207 else
208 GhcLibWays=p
209 endif
210
211 # Option flags to pass to GHC when it's compiling prelude modules
212 # Typically these are things like -O or -dcore-lint
213 # The ones that are *essential* are wired into ghc/lib/Makefile
214 #
215 #       -O is pretty desirable, otherwise no inlining of prelude
216 #               things (incl "+") happens when compiling with this compiler
217
218 GhcLibHcOpts=-O
219 SplitObjs = YES
220
221 # Win32 only: Enable the RTS and libraries to be built as DLLs
222 #
223 EnableWin32DLLs=@EnableWin32DLLs@
224
225 # Strip local symbols from libraries?  This can make the libraries smaller,
226 # but makes debugging somewhat more difficult.  Doesn't work with all ld's.
227 #
228 StripLibraries=NO
229
230 # ----------------------------------------------------------------------------
231 # Options for GHC's RTS
232
233 # This is a good way to set things like -optc-g and -optc-DDEBUG for the RTS.
234 # GhcRtsHcOpts is used when compiling .hc files and .c files.
235 # GhcRtsCcOpts is used when compiling .c  files only.
236
237 # For a debugging RTS:
238 # GhcRtsHcOpts = -optc-DDEBUG
239 # GhcRtsCcOpts = -optc-g
240
241 # For an optimised RTS:
242 GhcRtsHcOpts=-O2
243 GhcRtsCcOpts=-O2 -optc-fomit-frame-pointer
244
245 ################################################################################
246 #
247 #               hslibs project
248 #
249 ################################################################################
250
251 # Build HsLibs for which compiler?  
252
253 # If $(HsLibsFor) == hugs or ghc, we assume we're building for the
254 # compiler/interpreter in the same source tree.
255
256 # HsLibsFor = ghc | hugs | nhc | hbc
257 HsLibsFor       = ghc
258
259 # hslibs for GHC also uses the following variables (defined above):
260 #   GhcLibWays, GhcLibHcOpts, EnableWin32DLLs, StripLibraries
261
262 # Build the Haskell Readline bindings?
263 #
264 GhcLibsWithReadline=NO
265 #
266 # Include path to readline.h
267 # (no path == in standard include path)
268 #
269 ReadlineIncludePath=
270 HaveLibReadline=@HaveLibReadline@
271
272 ################################################################################
273 #
274 #               happy project
275 #
276 #       Happy specific options
277 #
278 ################################################################################
279
280 # The compiler you'd like to use to compile Happy
281 WithHappyHc = @WithHc@
282
283 # HappyHcOpts gives the flags to pass to the Haskell compiler used
284 #             to compile the Happy sources with.
285 #
286 HappyHcOpts = -O
287
288 ################################################################################
289 #
290 #               haggis project
291 #
292 #       Haggis specific options
293 #
294 ################################################################################
295
296 ################################################################################
297 #
298 #               green-card project
299 #
300 #       Green-card specific options
301 #
302 ################################################################################
303
304 ################################################################################
305 #
306 #               nofib project
307 #
308 #       nofib specific options
309 #
310 ################################################################################
311
312 WithNofibHc = $(GHC_INPLACE)
313
314 # NoFibSubDirs controls which set of tests should be run
315 # You can run one or more of
316 #       imaginary 
317 #       spectral
318 #       real
319 #       parallel
320 #       PRIVATE
321 #       PENDING
322 #       UNUSED
323 NoFibSubDirs = imaginary spectral real
324
325 # The different ways to build nofib. Default is just to mirror
326 # what is done for the ghc prelude libraries.
327 #
328 NoFibWays = $(GhcLibWays)
329
330 # Haskell compiler options for nofib
331 NoFibHcOpts = -O
332
333 # ==============================================================================
334 #
335 #                       END OF PROJECT-SPECIFIC STUFF
336 #
337 #               Now come the generic configuration options
338 #
339 # ==============================================================================
340
341 ################################################################################
342 #
343 #               Paths (see paths.mk)
344 #
345 ################################################################################
346
347 # Directory used by GHC (and possibly other tools) for storing
348 # temporary files.  If your /tmp isn't big enough, either override
349 # this in build.mk or set your environment variable "TMPDIR" to point
350 # to somewhere with more space.  (TMPDIR=. is a good choice).
351
352 TMPDIR                  = /tmp
353
354 # FPTOOLS_TOP: the top of the fptools hierarchy, absolute path.
355
356 FPTOOLS_TOP_ABS         = @hardtop@
357
358 #
359 # Installation directories, we don't use half of these,
360 # but since the configure script has them on offer while
361 # passing through, we might as well set them.
362
363 prefix                  = @prefix@
364 exec_prefix             = @exec_prefix@
365 bindir                  = @bindir@
366 #UNUSED, see below: libexecdir              = @libexecdir@
367 datadir                 = @datadir@
368 #sysconfdir              = @datadir@
369 #sharedstatedir          = @sharedstatedir@
370 #localstatedir           = @localstatedir@
371 libdir                  = @libdir@
372 infodir                 = @infodir@
373 includedir              = @includedir@
374 oldincludedir           = @oldincludedir@
375 mandir                  = @mandir@
376 #UNUSED:srcdir          = @srcdir@
377
378
379 # Default values for most of the above are only set if
380 # they weren't configured to anything in particular
381 # via the configure script. (i.e., we make no assumption
382 # that the autoconf-generated script will assign defaults
383 # to all of the above).
384 #
385 ifeq "$(strip $(exec_prefix))" ""
386 exec_prefix             = $(prefix)
387 endif
388 ifeq "$(strip $(bindir))" ""
389 bindir                  = $(exec_prefix)/bin
390 endif
391
392 #
393 # NOTE: by intention, libexecdir and libdir point to 
394 # the same place.
395 #  => Only way to override this is to set libexecdir= on the command line.
396 #     (NOTE: configure script setting is ignored).
397 libexecdir              = $(libdir)
398
399 ifeq "$(strip $(datadir))" ""
400 datadir         = $(prefix)/share
401 endif
402 ifeq "$(strip $(libdir))" ""
403 libdir          = $(exec_prefix)/lib
404 endif
405 ifeq "$(strip $(infodir))" ""
406 infodir         = $(prefix)/info
407 endif
408 ifeq "$(strip $(includedir))" ""
409 includedir      = $(prefix)/include
410 endif
411 ifeq "$(strip $(oldincludedir))" ""
412 oldincludedir   = /usr/include
413 endif
414 ifeq "$(strip $(mandir))" ""
415 mandir          = $(prefix)/man
416 endif
417  
418
419 ################################################################################
420 #
421 #               Utilities programs: flags
422 #
423 ################################################################################
424
425 # If you want to give any standard flags to pretty much any utility
426 # (see utils.mk for a complete list), by adding a line here
427 #
428 #       SRC_P_OPTS += ...
429 #
430 # where P is the utility. For example, to add -O to all Haskell
431 # compilations, 
432 #
433 #       SRC_HC_OPTS += -O
434
435
436 ################################################################################
437 #
438 #               Utilities programs: where to find them
439 #
440 ################################################################################
441
442 #-----------------------------------------------------------------------------
443 # FPtools Utility locations
444
445 # By default, the various utils needed to be build ghc and chums
446 # is set up to point to the utils/ directory. Define here the
447 # path prefix for the utilities. Notice that it's a prefix with
448 # a trailing slash, so that it can be concatenated directly on
449 # front of a program name; if it's not set then we just look
450 # along the shell's $(PATH)
451 #
452 # If instead you want to use installed or your own versions of these,
453 # override the various *_PREFIX in build.mk, i.e., having the following
454 # in build.mk:
455 #
456 #   MKDEPENDC_PREFIX=
457 #
458 # will force `make' to rummage around in your PATH to find `mkdependC' (not
459 # sure it would need it in the first place, but still).
460 #
461 GLAFP_UTILS             = $(FPTOOLS_TOP)/glafp-utils
462
463 SCRIPT_PREFIX           = $(GLAFP_UTILS)/scripts/
464 MKDEPENDC_PREFIX        = $(GLAFP_UTILS)/mkdependC/
465 LTX_PREFIX              = $(GLAFP_UTILS)/ltx/
466 RUNTEST_PREFIX          = $(GLAFP_UTILS)/runstdtest/
467 VERBATIM_PREFIX         = $(GLAFP_UTILS)/verbatim/
468 SGMLVERB_PREFIX         = $(GLAFP_UTILS)/sgmlverb/
469 ETAGS_PREFIX            = $(GLAFP_UTILS)/etags/
470 MSUB_PREFIX             = $(GLAFP_UTILS)/msub/
471 LNDIR_PREFIX            = $(GLAFP_UTILS)/lndir/
472 MKDIRHIER_PREFIX        = $(GLAFP_UTILS)/mkdirhier/
473
474 # Still used?
475 LITERATE                = $(FPTOOLS_TOP)/literate
476
477 LITERATE_PREFIX         = $(FPTOOLS_TOP)/literate/
478 INFO_PREFIX             = $(FPTOOLS_TOP)/literate/info-utils/
479 TEXI2HTML_PREFIX        = $(LITERATE_PREFIX)texi2html/
480
481 HAPPY_PREFIX            = $(FPTOOLS_TOP)/happy/src/
482 GREENCARD_PREFIX        = $(FPTOOLS_TOP)/green-card/src/
483
484 UNLIT_PREFIX            = $(FPTOOLS_TOP)/ghc/utils/unlit/
485 UGEN_PREFIX             = $(FPTOOLS_TOP)/ghc/utils/ugen/
486 STAT2RESID_PREFIX       = $(FPTOOLS_TOP)/ghc/utils/stat2resid/
487 HP2PS_PREFIX            = $(FPTOOLS_TOP)/ghc/utils/hp2ps/
488 HSCPP_PREFIX            = $(FPTOOLS_TOP)/ghc/utils/hscpp/
489 HSTAGS_PREFIX           = $(FPTOOLS_TOP)/ghc/utils/hstags/
490
491
492 #-----------------------------------------------------------------------------
493 # Haskell compilers and mkdependHS
494
495 # $(GHC), $(HBC) and $(NHC) point to installed versions of the relevant
496 # compilers, if available.
497 #
498 # $(HC) is a generic Haskell 98 compiler, set to $(GHC) by default.
499 # $(MKDEPENDHS) is the Haskell dependency generator (ghc -M).
500
501 GHC             = @GHC@
502 HBC             = @HBC@
503 NHC             = @NHC@
504
505 HC              = @WithHc@
506 MKDEPENDHS      = $(HC)
507
508 # Sometimes we want to invoke ghc from the build tree in different
509 # projects (eg. it's handy to have a nofib & a ghc build in the same
510 # tree).  We can refer to "this ghc" as $(GHC_INPLACE):
511
512 GHC_INPLACE     = $(FPTOOLS_TOP)/ghc/driver/ghc-inplace
513
514 #-----------------------------------------------------------------------------
515 # C compiler
516 #
517 #
518 HaveGcc         = @HaveGcc@
519 UseGcc          = YES
520 WhatGccIsCalled = @WhatGccIsCalled@
521 ifeq "$(strip $(HaveGcc))" "YES"
522 ifneq "$(strip $(UseGcc))"  "YES"
523   CC    = cc
524 else
525   CC    = $(WhatGccIsCalled)
526 endif
527 endif
528
529 #-----------------------------------------------------------------------------
530 # GMP Library (version 2.0.x or above)
531 #
532 HaveLibGmp      = @HaveLibGmp@
533 LibGmp          = @LibGmp@
534
535 #-----------------------------------------------------------------------------
536 # Flex
537
538 FLEX                    = @LEX@
539 # Don't bother with -lfl, we define our own yywrap()s anyway.
540 FLEX_LIB                = 
541 #WAS:FLEX_LIB           = @LEXLIB@
542
543 #-----------------------------------------------------------------------------
544 # Other standard (ha!) Unix utilities
545
546 AR                      = @ArCmd@
547 # Yuckage: for ghc/utils/parallel -- todo: nuke this dependency!!
548 BASH                    = /usr/local/bin/bash
549 #
550 # Could be either gzip or compress
551 #
552 COMPRESS                = @CompressCmd@
553 COMPRESS_SUFFIX         = @CompressSuffix@
554
555 CONTEXT_DIFF            = @ContextDiffCmd@
556 CP                      = cp
557 CPP                     = @CPP@
558 CTAGS                   = $(ETAGS)
559 RAWCPP                  = $(CPP) -undef -traditional
560 FIND                    = @FindCmd@
561 INSTALL                 = @INSTALL@
562 #
563 # Sigh - the autoconf macro for INSTALL will subst a relative path to the fallback
564 # install-sh script (if chosen). This not terribly useful to us, so we convert
565 # it into an abs. path.
566
567 INSTALL                 := $(subst .././install-sh,$(FPTOOLS_TOP_ABS)/install-sh,$(INSTALL))
568 LATEX                   = latex
569 LN_S                    = @LN_S@
570 MANMACROS               = -man
571 MSMACROS                = -ms
572 MV                      = mv
573 NROFF                   = nroff
574 PERL                    = @PerlCmd@
575 PIC                     = pic
576 PREPROCESSCMD           = $(CC) -E
577 PRINTER                 = lpr
578 RANLIB                  = @RANLIB@
579 RM                      = rm -f
580 SED                     = @SedCmd@
581 SHELL                   = /bin/sh
582 #
583 # In emergency situations, REAL_SHELL is used to perform shell commands
584 # from within the ghc driver script, by scribbling the command line to
585 # a temp file and then having $(REAL_SHELL) execute it. 
586 #
587 # The reason for having to do this is that overly long command lines
588 # cause unnecessary trouble with some shells (e.g., /bin/sh on Solaris
589 # 2.5.1), which is why this backdoor is provided. The situation of overly
590 # long command lines is either encountered while doing `make boot' in ghc/compiler, 
591 # or when linking the compiler binary (`hsc'). 
592 #
593 # We do not use SHELL to execute long commands, as `make' will more than likely
594 # override whatever setting you have in your environment while executing. 
595
596 # By default, REAL_SHELL is set equal SHELL, which is not really a smart move
597 # as it is SHELL that will show up the bogosity in the first place, but setting
598 # it to anything else isn't really portable.
599 #
600 #  ====> If long command lines cause you trouble, invoke `ghc' (via `make' or otherwise)
601 # with REAL_SHELL set to something else than /bin/sh, for instance, your favourite
602 # command shell.
603 #
604 REAL_SHELL=$(SHELL)
605 SIZE                    = size
606 STRIP                   = strip
607 TAR                     = @TarCmd@
608 ZIP                     = zip
609
610 #
611 # Under cygwin32, we have to deal with .exe suffixes
612 #
613 EXE_SUFFIX=@ExeSuffix@
614
615 #
616 # This is special to literate/, ToDo: add literate-specific
617 # configure setup to literate/.
618 #
619 TBL                     = tbl
620 TEX                     = tex
621 TGRIND                  = tgrind
622 TGRIND_HELPER           = /usr/local/lib/tgrind/tfontedpr # XXX
623 TIB                     = tib
624
625 TIME                    = @TimeCmd@
626 TROFF                   = troff
627 UNAME                   = uname
628 YACC                    = @YaccCmd@
629
630 #-----------------------------------------------------------------------------
631 # SGML stuff (currently not configured - we assume you have it)
632
633 SGML2DVI                = db2dvi
634 SGML2HTML               = db2html
635 SGML2INFO               = db2info
636 SGML2RTF                = db2rtf
637
638 SGMLSTYLESHEET          = $(FPTOOLS_TOP_ABS)/docs/fptools-both.dsl
639
640 SRC_SGML2DVI_OPTS       = -d $(SGMLSTYLESHEET)
641 SRC_SGML2HTML_OPTS      = -d $(SGMLSTYLESHEET)
642 SRC_SGML2INFO_OPTS      = -d $(SGMLSTYLESHEET)
643 SRC_SGML2RTF_OPTS       = -d $(SGMLSTYLESHEET)
644
645 #-----------------------------------------------------------------------------
646 #               FPtools support software
647
648 # Stuff from fptools/glafp-utils
649 MKDEPENDC               = $(MKDEPENDC_PREFIX)mkdependC
650 LTX                     = $(LTX_PREFIX)ltx
651 MKDIRHIER               = $(MKDIRHIER_PREFIX)mkdirhier
652 LNDIR                   = $(LNDIR_PREFIX)lndir
653 MSUB                    = $(MSUB_PREFIX)msub
654 ETAGS                   = $(ETAGS_PREFIX)etags
655 VERBATIM                = $(VERBATIM_PREFIX)verbatim
656 SGMLVERB                = $(SGMLVERB_PREFIX)sgmlverb
657 RUNTEST                 = $(RUNTEST_PREFIX)runstdtest
658 HAPPY                   = @HappyCmd@
659 HAPPY_VERSION           = @HappyVersion@                
660 LX                      = @LxCmd@
661 GREENCARD               = $(FPTOOLS_TOP)/green-card/src/green-card
662
663 BLD_DLL                 = dllwrap
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 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 s mp mg a b c d e f g h i j k l m n o A B
727 USER_WAYS=a b c d e f g h i j k l m n o A B
728
729 #
730 # The following ways currently have treated specially, p u t mg,
731 # as the driver script treats these guys specially and needs to carefully be told
732 # about the options for these. Hence, we hide the required command line options
733 # for these in the ghc/driver, as this is the only place they are needed.
734
735 # If you want to add to these default options, fill in the variables below:
736
737 # Way 'p':
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=-unreg
748
749 # Way `s':
750 WAY_s_NAME=threads (for SMP)
751 WAY_s_HC_OPTS=-smp
752
753 # Way `mp': 
754 WAY_mp_NAME=parallel
755 WAY_mp_HC_OPTS=-parallel
756
757 # Way `mg': 
758 WAY_mg_NAME=GranSim
759 WAY_mg_HC_OPTS=-gransim
760
761 # Way `dll': 
762 WAY_dll_NAME=Win32 DLLs
763 WAY_dll_HC_OPTS=
764
765 #
766 # Add user-way configurations here:
767 #
768 WAY_A_NAME=
769 WAY_A_HC_OPTS=
770
771 WAY_B_NAME=
772 WAY_B_HC_OPTS=
773
774 WAY_a_NAME=
775 WAY_a_HC_OPTS=
776
777 WAY_b_NAME=
778 WAY_b_HC_OPTS=
779
780 WAY_c_NAME=
781 WAY_c_HC_OPTS=
782
783 WAY_d_NAME=
784 WAY_d_HC_OPTS=
785
786 WAY_e_NAME=
787 WAY_e_HC_OPTS=
788
789 WAY_f_NAME=
790 WAY_f_HC_OPTS=
791
792 WAY_g_NAME=
793 WAY_g_HC_OPTS=
794
795 WAY_h_NAME=
796 WAY_h_HC_OPTS=
797
798 WAY_i_NAME=
799 WAY_i_HC_OPTS=
800
801 WAY_j_NAME=
802 WAY_j_HC_OPTS=
803
804 WAY_k_NAME=
805 WAY_k_HC_OPTS=
806
807 WAY_l_NAME=
808 WAY_l_HC_OPTS=
809
810 WAY_m_NAME=
811 WAY_m_HC_OPTS=
812
813 WAY_n_NAME=
814 WAY_n_HC_OPTS=
815
816 WAY_o_NAME=
817 WAY_o_HC_OPTS=