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