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