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