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