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