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