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