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