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