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