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