4 ################################################################################
8 # This file supplies defaults for many tweakable build configuration
9 # options. Some of the defaults are filled in by the autoconf-generated
12 # DO NOT EDIT THIS FILE!
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.
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.
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.
26 # This is one of only two files that configure generates (the other is config.h)
28 # There is a section below for each project within the fptools suite
32 # a section corresponding to each of the main .mk files
33 # included by boilerplate.mk (see boilerplate.mk for a list).
36 ################################################################################
38 # Project-wide platform variables
40 ################################################################################
42 # A "platform" is the GNU cpu-type/manufacturer/operating-system target machine
43 # specifier. E.g. sparc-sun-solaris2
45 HOSTPLATFORM = @HostPlatform@
46 TARGETPLATFORM = @TargetPlatform@
47 BUILDPLATFORM = @HostPlatform@
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.
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@
60 # ToDo: check if these can be purged now. -- sof
63 @HostPlatform_CPP@_HOST = 1
64 @HostPlatform_CPP@_TARGET = 1
65 @HostPlatform_CPP@_BUILD = 1
67 @HostArch_CPP@_HOST_ARCH = 1
68 @HostArch_CPP@_TARGET_ARCH = 1
69 @HostArch_CPP@_BUILD_ARCH = 1
71 @HostOS_CPP@_HOST_OS = 1
72 @HostOS_CPP@_TARGET_OS = 1
73 @HostOS_CPP@_BUILD_OS = 1
75 @HostVendor_CPP@_HOST_VENDOR = 1
76 @HostVendor_CPP@_TARGET_VENDOR = 1
77 @HostVendor_CPP@_BUILD_VENDOR = 1
79 # Leading underscores on symbol names in object files
80 # Valid options: YES/NO
82 LeadingUnderscore=@LeadingUnderscore@
84 # Pin a suffix on executables? If so, what (Windows only).
87 ################################################################################
91 # Set of options applicable to all fptools projects
93 ################################################################################
95 # BootingFromHc - build GHC and the libraries from .hc files?
96 BootingFromHc = @BootingFromHc@
98 # BootingFromUnregisterisedHc - treat .hc files as containing unregisterised
99 # rather than registerised code, i.e., disable the mangler?
100 BootingFromUnregisterisedHc = @BootingFromUnregisterisedHc@
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
106 AllProjects = glafp-utils ghc libraries hslibs green-card happy hdirect hood nofib haddock
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.
116 # set ProjectsDontInstall to a list of projects which are normally built but
119 ProjectsDontInstall = glafp-utils nofib
122 # Should the various project tests directories be built?
124 IncludeTestDirsInBuild=NO
127 # Which ways should SGML documents be built?
128 # options are: dvi ps pdf html rtf
132 ################################################################################
136 # Set of (configurable) options needed by the ghc tree
137 # plus their default options (if any).
139 ################################################################################
141 #---------------------------------------------------------------
143 # Variables that control how the compiler itself is built
145 #---------------------------------------------------------------
147 # The compiler used to build GHC is $(GHC). To change the actual compiler
148 # used, re-configure with --with-ghc=<path-to-ghc>.
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)
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:
158 # -DDEBUG include debugging code and assertions (will make the
159 # compiler slower and produce debugging output, but useful
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
167 # Extra Haskell compiler options to use when compiling all Haskell
168 # *programs* (not libraries), including GHC itself.
169 # Typical options to use here:
171 # -H25m use a bigger heap (to speed up compilation)
173 # -O compile an optimised compiler
177 # Build a compiler that will build *unregisterised* libraries and
178 # binaries by default. Unregisterised code is supposed to compile and
179 # run without any support for architecture-specific assembly mangling,
180 # register assignment or tail-calls, and is therefore a good way to get
181 # started when porting GHC to new architectures.
183 # If this is set to NO, you can still use the unregisterised way
184 # (way 'u') to get unregisterised code, but the default way will be
187 # NOTE: this is not the same as building the compiler itself
188 # unregisterised. That's done by either (a) bootstrapping with a
189 # compiler that was built with GhcUnregisterised=YES, or (b)
190 # bootstrapping with a compiler that has way 'u' libraries, and the
191 # flag '-unreg' is added to GhcHcOpts above.
195 # Build a compiler with a native code generator backend
196 # (as well as a C backend)
198 # Target platforms supported:
200 ifneq "$(findstring $(HostArch_CPP), i386 sparc)" ""
201 GhcWithNativeCodeGen=YES
203 GhcWithNativeCodeGen=NO
206 # Include support for generating Java
209 HaveLibDL = @HaveLibDL@
210 HaveRtldNext = @HaveRtldNext@
211 HaveRtldLocal = @HaveRtldLocal@
213 # Include GHCi in the compiler. Default to NO for the time being.
215 ifneq "$(findstring $(HostOS_CPP), mingw32 cygwin32 linux solaris2 freebsd netbsd openbsd)" ""
216 GhcWithInterpreter=YES
217 ifeq "$(HaveLibDL)" "YES"
221 GhcWithInterpreter=NO
225 # Building various ways?
226 # (right now, empty if not).
227 BuildingParallel=$(subst mp,YES,$(filter mp,$(WAYS)))
228 BuildingGranSim=$(subst mg,YES,$(filter mg,$(WAYS)))
230 #------------------------------------------------------------------------------
231 # Options for Libraries
233 # What extra ways to build the libraries in
234 # In addition to the normal sequential way, the default is to also build
235 # profiled prelude libraries.
236 # When booting from .hc files, turn this off.
237 ifeq "$(BootingFromHc)" "YES"
243 # Option flags to pass to GHC when it's compiling modules in
244 # fptools/libraries. Typically these are things like -O or
245 # -dcore-lint or -H32m. The ones that are *essential* are wired into
248 # -O is pretty desirable, otherwise no inlining of prelude
249 # things (incl "+") happens when compiling with this compiler
251 GhcLibHcOpts=-O -Rghc-timing
253 # Win32 only: Enable the RTS and libraries to be built as DLLs
254 DLLized=@EnableWin32DLLs@
256 # Win32 only: are we building a compiler that tries to reduce external
257 # dependencies? i.e., one that doesn't assume that the user has got
258 # the cygwin toolchain installed on his/her Win32 box.
260 # GHC is still dependent on GNU tools in the backend (gcc to further process
261 # .c/.hc/.s/.o files + 'perl' to mangle and split), but using this
262 # option a GHC distribution can be put together which includes a minimal
263 # set of these open source tools.
265 MinimalUnixDeps=@MinimalUnixDeps@
267 # Strip local symbols from libraries? This can make the libraries smaller,
268 # but makes debugging somewhat more difficult. Doesn't work with all ld's.
273 # ----------------------------------------------------------------------------
274 # Object-file splitting
276 # Set SplitObjs=YES or NO in your build.mk
278 # Don't use -split-objs in in GhcLibHcOpts, because the build
279 # system needs to do other special magic if you are
280 # doing object-file splitting
282 # Don't split object files for libs if we're building DLLs, or booting from
286 ifeq "$(DLLized)" "YES"
289 ifeq "$(BootingFromHc)" "YES"
292 ifeq "$(GhcUnregisterised)" "YES"
295 ifeq "$(TARGETPLATFORM)" "ia64-unknown-linux"
299 # ----------------------------------------------------------------------------
300 # Options for GHC's RTS
302 # This is a good way to set things like -optc-g and -optc-DDEBUG for the RTS.
303 # GhcRtsHcOpts is used when compiling .hc files and .c files.
304 # GhcRtsCcOpts is used when compiling .c files only.
306 # For a debugging RTS:
307 # GhcRtsHcOpts = -optc-DDEBUG
310 # For an optimised RTS:
312 GhcRtsCcOpts=-fomit-frame-pointer
314 # Include the front panel code? Needs GTK+.
315 GhcRtsWithFrontPanel = NO
318 # To have the RTS support interoperation with OS threads, set
319 # GhcRtsThreaded to YES (preferably via the --enable-threaded-rts
320 # configure script option). The consequence of this is spelled out
321 # in details elsewhere, but, briefly, Concurrent Haskell threads
322 # can now make external (i.e., C) calls without blocking the progress
323 # of other CH threads. Multiple native threads can also execute
324 # Haskell code without getting in each others way too.
326 GhcRtsThreaded=@ThreadedRts@
328 ################################################################################
332 ################################################################################
334 # Build the Haskell Readline bindings?
336 GhcLibsWithReadline=@HaveReadlineHeaders@
338 # Libraries needed for linking with readline
339 LibsReadline=@LibsReadline@
341 # Include path to readline.h
342 # (no path == in standard include path)
349 # Build the ObjectIO ?
351 GhcLibsWithObjectIO=@GhcLibsWithObjectIO@
353 # Build the Haskell OpenGL/GLUT binding?
355 GhcLibsWithHOpenGL=@GhcLibsWithHOpenGL@
356 GL_CFLAGS=@GL_CFLAGS@
362 ################################################################################
366 # Happy specific options
368 ################################################################################
370 # The compiler you'd like to use to compile Happy
371 WithHappyHc = @WithHc@
373 # HappyHcOpts gives the flags to pass to the Haskell compiler used
374 # to compile the Happy sources with.
378 ################################################################################
382 # Haggis specific options
384 ################################################################################
386 ################################################################################
390 # Green-card specific options
392 ################################################################################
394 ################################################################################
398 # nofib specific options
400 ################################################################################
402 WithNofibHc = $(GHC_INPLACE)
404 # NoFibSubDirs controls which set of tests should be run
405 # You can run one or more of
413 NoFibSubDirs = imaginary spectral real
415 # The different ways to build nofib. Default is just to mirror
416 # what is done for the ghc prelude libraries.
418 NoFibWays = $(GhcLibWays)
420 # Haskell compiler options for nofib
423 # ==============================================================================
425 # END OF PROJECT-SPECIFIC STUFF
427 # Now come the generic configuration options
429 # ==============================================================================
431 ################################################################################
433 # Paths (see paths.mk)
435 ################################################################################
437 # Directory used by GHC (and possibly other tools) for storing
438 # temporary files. If your TMPDIR isn't big enough, either override
439 # this in build.mk or set your environment variable "TMPDIR" to point
440 # to somewhere with more space. (TMPDIR=. is a good choice).
442 # DEFAULT_TMPDIR isn't called TMPDIR because GNU make tends to
443 # override an environment variable with the value of the make variable
444 # of the same name (if it exists) when executing sub-processes, so
445 # setting the TMPDIR env var would have no effect in the build tree.
447 DEFAULT_TMPDIR = /tmp
448 ifeq "$(TARGETPLATFORM)" "i386-unknown-cygwin32"
449 DEFAULT_TMPDIR = C:/TEMP
451 ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
452 DEFAULT_TMPDIR = C:/TEMP
455 # FPTOOLS_TOP: the top of the fptools hierarchy, absolute path. (POSIX / unix-style path).
456 FPTOOLS_TOP_ABS = @hardtop@
457 # The platform specific version of 'hardtop'.
458 FPTOOLS_TOP_ABS_PLATFORM = @hardtop_plat@
461 # Installation directories, we don't use half of these,
462 # but since the configure script has them on offer while
463 # passing through, we might as well set them.
466 exec_prefix = @exec_prefix@
470 #sysconfdir = @datadir@
471 #sharedstatedir = @sharedstatedir@
472 #localstatedir = @localstatedir@
473 ifneq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
478 includedir = @includedir@
479 oldincludedir = @oldincludedir@
482 #UNUSED:infodir = @infodir@
483 #UNUSED:srcdir = @srcdir@
486 # override libdir and datadir to put project-specific stuff in
487 # a subdirectory with the version number included.
489 ifneq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
490 libdir = $(if $(ProjectNameShort),$(libdir0)/$(ProjectNameShort)-$(ProjectVersion),$(libdir0))
491 datadir = $(if $(ProjectNameShort),$(datadir0)/$(ProjectNameShort)-$(ProjectVersion),$(datadir0))
494 datadir = $(datadir0)
497 # Default place for putting interface files is $(libdir)
498 # (overriden for packages in package.mk)
502 # Default values for most of the above are only set if
503 # they weren't configured to anything in particular
504 # via the configure script. (i.e., we make no assumption
505 # that the autoconf-generated script will assign defaults
506 # to all of the above).
508 ifeq "$(strip $(exec_prefix))" ""
509 exec_prefix = $(prefix)
511 ifeq "$(strip $(bindir))" ""
512 bindir = $(exec_prefix)/bin
516 # NOTE: by intention, libexecdir and libdir point to
518 # => Only way to override this is to set libexecdir= on the command line.
519 # (NOTE: configure script setting is ignored).
520 libexecdir = $(libdir)
522 ifeq "$(strip $(datadir))" ""
523 datadir = $(prefix)/share
525 ifeq "$(strip $(libdir))" ""
526 libdir = $(exec_prefix)/lib
528 ifeq "$(strip $(includedir))" ""
529 includedir = $(prefix)/include
531 ifeq "$(strip $(oldincludedir))" ""
532 oldincludedir = /usr/include
534 ifeq "$(strip $(mandir))" ""
535 mandir = $(prefix)/man
539 ################################################################################
541 # Utilities programs: flags
543 ################################################################################
545 # If you want to give any standard flags to pretty much any utility
546 # (see utils.mk for a complete list), by adding a line here
550 # where P is the utility. For example, to add -O to all Haskell
555 # These flags make flex 8-bit
558 SRC_INSTALL_BIN_OPTS += -s
560 # lint gets all CPP's flags too
561 SRC_LINT_OPTS += -axz -DLINT $(SRC_CPP_OPTS)
562 WAY$(_way)_LINT_OPTS += WAY$(_way)_CPP_OPTS
564 # Default fptools options for dllwrap.
565 SRC_BLD_DLL_OPTS += -mno-cygwin --target=i386-mingw32
567 # Flags for CPP when running GreenCard on .pgc files
568 GC_CPP_OPTS += -P -E -x c -traditional -D__GLASGOW_HASKELL__
571 ################################################################################
573 # Utilities programs: where to find them
575 ################################################################################
577 #-----------------------------------------------------------------------------
578 # FPtools Utility locations
580 # By default, the various utils needed to be build ghc and chums
581 # is set up to point to the utils/ directory. Define here the
582 # path prefix for the utilities. Notice that it's a prefix with
583 # a trailing slash, so that it can be concatenated directly on
584 # front of a program name; if it's not set then we just look
585 # along the shell's $(PATH)
587 # If instead you want to use installed or your own versions of these,
588 # override the various *_PREFIX in build.mk, i.e., having the following
593 # will force `make' to rummage around in your PATH to find `mkdependC' (not
594 # sure it would need it in the first place, but still).
596 GLAFP_UTILS = $(FPTOOLS_TOP)/glafp-utils
598 SCRIPT_PREFIX = $(GLAFP_UTILS)/scripts/
599 MKDEPENDC_PREFIX = $(GLAFP_UTILS)/mkdependC/
600 LTX_PREFIX = $(GLAFP_UTILS)/ltx/
601 RUNTEST_PREFIX = $(GLAFP_UTILS)/runstdtest/
602 VERBATIM_PREFIX = $(GLAFP_UTILS)/verbatim/
603 SGMLVERB_PREFIX = $(GLAFP_UTILS)/sgmlverb/
604 ETAGS_PREFIX = $(GLAFP_UTILS)/etags/
605 MSUB_PREFIX = $(GLAFP_UTILS)/msub/
606 LNDIR_PREFIX = $(GLAFP_UTILS)/lndir/
607 MKDIRHIER_PREFIX = $(GLAFP_UTILS)/mkdirhier/
608 DOCBOOK_PREFIX = $(GLAFP_UTILS)/docbook/
610 HADDOCK_PREFIX = $(FPTOOLS_TOP)/haddock/
612 LITERATE_PREFIX = $(FPTOOLS_TOP)/literate/
614 UNLIT_PREFIX = $(FPTOOLS_TOP)/ghc/utils/unlit/
615 HP2PS_PREFIX = $(FPTOOLS_TOP)/ghc/utils/hp2ps/
616 HSTAGS_PREFIX = $(FPTOOLS_TOP)/ghc/utils/hstags/
617 HSC2HS_PREFIX = $(FPTOOLS_TOP)/ghc/utils/hsc2hs/
619 #-----------------------------------------------------------------------------
620 # Haskell compilers and mkdependHS
622 # $(GHC), $(HBC) and $(NHC) point to installed versions of the relevant
623 # compilers, if available.
625 # $(HC) is a generic Haskell 98 compiler, set to $(GHC) by default.
626 # $(MKDEPENDHS) is the Haskell dependency generator (ghc -M).
628 # NOTE: Don't override $(GHC) in build.mk, use configure --with-ghc instead
629 # (because the version numbers have to be calculated).
632 GhcVersion = @GhcVersion@
633 GhcMajVersion = @GhcMajVersion@
634 GhcMinVersion = @GhcMinVersion@
635 GhcPatchLevel = @GhcPatchLevel@
636 # Canonicalised ghc version number, used for easy (integer) version comparisons.
637 GhcCanonVersion = $(GhcMajVersion)$(GhcMinVersion)
645 # Sometimes we want to invoke ghc from the build tree in different
646 # projects (eg. it's handy to have a nofib & a ghc build in the same
647 # tree). We can refer to "this ghc" as $(GHC_INPLACE):
649 GHC_INPLACE = $(FPTOOLS_TOP)/ghc/compiler/ghc-inplace
651 #-----------------------------------------------------------------------------
654 # NB. Don't override $(WhatGccIsCalled) using build.mk, re-configure using
655 # the flag --with-gcc=<blah> instead. The reason is that the configure script
656 # needs to know which gcc you're using in order to perform its tests.
660 WhatGccIsCalled = @WhatGccIsCalled@
661 ifeq "$(strip $(HaveGcc))" "YES"
662 ifneq "$(strip $(UseGcc))" "YES"
665 CC = $(WhatGccIsCalled)
669 # default C compiler flags
670 SRC_CC_OPTS = @SRC_CC_OPTS@
672 ifeq "$(TARGETPLATFORM)" "ia64-unknown-linux"
676 #-----------------------------------------------------------------------------
677 # GMP Library (version 2.0.x or above)
679 HaveLibGmp = @HaveLibGmp@
682 #-----------------------------------------------------------------------------
685 HaveLibMingwEx = @HaveLibMingwEx@
687 #-----------------------------------------------------------------------------
689 # (if present in libc use that one, otherwise use the one in the tree)
691 HavePosixRegex = @HavePosixRegex@
692 HaveGNURegex = @HaveGNURegex@
694 #-----------------------------------------------------------------------------
697 GTK_CONFIG = @GTK_CONFIG@
698 GTK_VERSION = @GTK_VERSION@
700 #-----------------------------------------------------------------------------
704 # Don't bother with -lfl, we define our own yywrap()s anyway.
706 #WAS:FLEX_LIB = @LEXLIB@
708 #-----------------------------------------------------------------------------
709 # Other standard (ha!) Unix utilities
712 ArSupportsInput = @ArSupportsInput@
713 # Yuckage: for ghc/utils/parallel -- todo: nuke this dependency!!
714 BASH = /usr/local/bin/bash
716 # Could be either gzip or compress
718 COMPRESS = @CompressCmd@
719 COMPRESS_SUFFIX = @CompressSuffix@
721 CONTEXT_DIFF = @ContextDiffCmd@
723 CPP = @CPP@ @CPPFLAGS@
726 # RAWCPP_FLAGS are the flags to give to cpp (viz, gcc -E) to persuade it to
727 # behave plausibly on Haskell sources.
729 RAWCPP_FLAGS = -undef -traditional
733 # Sigh - the autoconf macro for INSTALL will subst a relative path to the fallback
734 # install-sh script (if chosen). This not terribly useful to us, so we convert
735 # it into an abs. path.
737 INSTALL := $(subst .././install-sh,$(FPTOOLS_TOP_ABS)/install-sh,$(INSTALL))
749 PREPROCESSCMD = $(CC) -E
756 # Some ld's support the -x flag and some don't, so the configure
757 # script detects which we have and sets LdXFlag to "-x" or ""
763 # In emergency situations, REAL_SHELL is used to perform shell commands
764 # from within the ghc driver script, by scribbling the command line to
765 # a temp file and then having $(REAL_SHELL) execute it.
767 # The reason for having to do this is that overly long command lines
768 # cause unnecessary trouble with some shells (e.g., /bin/sh on Solaris
769 # 2.5.1), which is why this backdoor is provided. The situation of overly
770 # long command lines is either encountered while doing `make boot' in ghc/compiler,
771 # or when linking the compiler binary (`hsc').
773 # We do not use SHELL to execute long commands, as `make' will more than likely
774 # override whatever setting you have in your environment while executing.
776 # By default, REAL_SHELL is set equal to SHELL, which is not really a smart move
777 # as it is SHELL that will show up the bogosity in the first place, but setting
778 # it to anything else isn't really portable.
780 # ====> If long command lines cause you trouble, invoke `ghc' (via `make' or otherwise)
781 # with REAL_SHELL set to something else than /bin/sh, for instance, your favourite
791 # Under Windows, we have to deal with .exe suffixes
796 # This is special to literate/, ToDo: add literate-specific
797 # configure setup to literate/.
802 TGRIND_HELPER = /usr/local/lib/tgrind/tfontedpr # XXX
810 #-----------------------------------------------------------------------------
815 SGML2DVI = $(DOCBOOK_PREFIX)db2dvi
816 SGML2HTML = $(DOCBOOK_PREFIX)db2html
817 SGML2PS = $(DOCBOOK_PREFIX)db2ps
818 SGML2PDF = $(DOCBOOK_PREFIX)db2pdf
819 SGML2RTF = $(DOCBOOK_PREFIX)db2rtf
821 SGMLSTYLESHEET = $(FPTOOLS_TOP_ABS)/docs/fptools-both.dsl
823 SRC_SGML2DVI_OPTS = -d $(SGMLSTYLESHEET)
824 SRC_SGML2HTML_OPTS = -d $(SGMLSTYLESHEET)
825 SRC_SGML2PS_OPTS = -d $(SGMLSTYLESHEET)
826 SRC_SGML2RTF_OPTS = -d $(SGMLSTYLESHEET)
827 SRC_SGML2PDF_OPTS = -d $(SGMLSTYLESHEET)
829 DOCBOOK_CATALOG = @Catalog@
831 #-----------------------------------------------------------------------------
832 # FPtools support software
834 # Stuff from fptools/glafp-utils
835 MKDEPENDC = $(MKDEPENDC_PREFIX)mkdependC
836 LTX = $(LTX_PREFIX)ltx
837 MKDIRHIER = $(MKDIRHIER_PREFIX)mkdirhier
838 LNDIR = $(LNDIR_PREFIX)lndir
839 MSUB = $(MSUB_PREFIX)msub
840 ETAGS = $(ETAGS_PREFIX)etags
841 VERBATIM = $(VERBATIM_PREFIX)verbatim
842 SGMLVERB = $(SGMLVERB_PREFIX)sgmlverb
843 RUNTEST = $(RUNTEST_PREFIX)runstdtest
845 GREENCARD = $(FPTOOLS_TOP)/green-card/src/green-card
850 # .NET support software
859 HAPPY_VERSION = @HappyVersion@
861 # Options to pass to Happy when we're going to compile the output with GHC
863 GHC_HAPPY_OPTS = -agc
868 HADDOCK = @HaddockCmd@
869 HADDOCK_INPLACE = $(HADDOCK_PREFIX)/src/haddock-inplace
872 # Stuff from fptools/literate
874 LIT2PGM = $(LITERATE_PREFIX)lit2pgm
875 LIT2HTML = $(LITERATE_PREFIX)lit2html
876 LIT2LATEX = $(LITERATE_PREFIX)lit2latex
877 MKDEPENDLIT = $(LITERATE_PREFIX)mkdependlit
878 LIT2CHANGELOG = $(LITERATE_PREFIX)lit2changelog
879 LIT2TEXT = $(LITERATE_PREFIX)lit2text
882 # Stuff from fptools/ghc/utils
884 UNLIT = $(UNLIT_PREFIX)unlit$(EXE_SUFFIX)
885 HP2PS = $(HP2PS_PREFIX)hp2ps$(EXE_SUFFIX)
886 HSTAGS = $(HSTAGS_PREFIX)hstags
887 HSC2HS = $(HSC2HS_PREFIX)hsc2hs-inplace
890 # Options for the compiling different `ways'. Various projects within
891 # the glorious fptools tree support building in various user-configured
892 # ways. For instance, you could set up one `way' such that the prelude
893 # libraries all were built with the option -ffoldr-build-on.
895 # To configure up your own way, have a look at some of the standard ways
896 # such as profiling, and create your own set of WAY_*_OPTS defs below.
897 # After having done that, add your way string to WAYS, and after having
898 # run the configure script, the different projects will add the new way
899 # to the list of ways they support.
903 # IMPORTANT! The WAYS variable configures the different `ways'
904 # you want to build a project (or maybe just parts of it, as is
905 # the case for ghc/). This variable is intended set inside the
906 # project mk setup, enforcing a global fptools WAYS is a bit too
907 # much (do you *really* want to build glafp-utils the profiled-concurrent
912 # Definitions of the different ways:
916 # - description, e.g., profiling
917 # * what they mean to the driver:
918 # - WAY_p_HC_OPTS gives the list of command-line options
923 # The ways currently defined.
925 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
926 USER_WAYS=a b c d e f g h j k l m n o A B
929 # The following ways currently have treated specially, p u t mg,
930 # as the driver script treats these guys specially and needs to carefully be told
931 # about the options for these. Hence, we hide the required command line options
932 # for these in the ghc/driver, as this is the only place they are needed.
934 # If you want to add to these default options, fill in the variables below:
938 WAY_i_HC_OPTS= -filx -fruntime-types
945 WAY_t_NAME=ticky-ticky profiling
946 WAY_t_HC_OPTS= -ticky
949 WAY_u_NAME=unregisterized (using portable C only)
953 WAY_s_NAME=threads (for SMP)
958 WAY_mp_HC_OPTS=-parallel
962 WAY_mg_HC_OPTS=-gransim
965 # Add user-way configurations here:
1015 ################################################################################
1017 # 31-bit-Int Core files
1019 ################################################################################
1022 # It is possible to configure the compiler and prelude to support 31-bit
1023 # integers, suitable for a back-end and RTS using a tag bit on a 32-bit
1024 # architecture. Currently the only useful output from this option is external Core
1025 # files. The following additions to your build.mk will produce the
1026 # 31-bit core output. Note that this is *not* just a library "way"; the
1027 # compiler must be built a special way too.
1029 # GhcCppOpts +=-DWORD_SIZE_IN_BITS=31
1030 # GhcLibHcOpts +=-fext-core -fno-code -DWORD_SIZE_IN_BITS=31
1031 # GhcLibCppOpts += -DWORD_SIZE_IN_BITS=31