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