495194d28abb28f6d8468a048e53c611cdc016e5
[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
29 ifneq "$(findstring 3.7, $(MAKE_VERSION))" ""
30 ifeq "$(findstring 3.79.1, $(MAKE_VERSION))" ""
31 $(error GNU make version 3.79.1 or later is required.)
32 endif
33 endif
34
35 ################################################################################
36 #
37 # GHC Version
38 #
39
40 # ProjectVersion    is treated as a *string*
41 # ProjectVersionInt is treated as an *integer* (for cpp defines)
42
43 # Versioning scheme: A.B.C
44 #         A: major version, decimal, any number of digits
45 #         B: minor version, decimal, any number of digits
46 #         C: patchlevel, one digit, omitted if zero.
47 #
48 # ProjectVersionInt does *not* contain the patchlevel (rationale: this
49 # figure is used for conditional compilations, and library interfaces
50 # etc. are not supposed to change between patchlevels).
51 #
52 # The ProjectVersionInt is included in interface files, and GHC
53 # checks that it's reading interface generated by the same ProjectVersion
54 # as itself. It does this even though interface file syntax may not 
55 # change between versions.  Rationale: calling conventions or other 
56 # random .o-file stuff might change even if the .hi syntax doesn't
57
58 ProjectName       = @ProjectName@
59 ProjectTags       =
60 ProjectVersion    = @ProjectVersion@$(ProjectTags)
61 ProjectVersionInt = @ProjectVersionInt@
62 ProjectPatchLevel = @ProjectPatchLevel@
63
64 ################################################################################
65 #
66 #               Platform variables
67 #
68 ################################################################################
69
70 # A "platform" is the GNU cpu-type/manufacturer/operating-system target machine
71 # specifier.  E.g. sparc-sun-solaris2
72 #
73 # Build  platform: the platform on which we are doing this build
74 # Host   platform: the platform on which these binaries will run
75 # Target platform: the platform for which this compiler will generate code
76 #
77 # We don't support build & host being different, because the build
78 # process creates binaries that are run during the build, and also
79 # installed.
80 #
81 # If host & target are different, then we are building a compiler
82 # which will generate intermediate .hc files to port to the target
83 # architecture for bootstrapping.  The libraries and stage 2 compiler
84 # will be built as HC files for the target system, and likely won't
85 # build on this host platform.
86 #
87 # An important invariant is that for any piece of source code, the
88 # platform on which the code is going to run is the HOST platform,
89 # and the platform on which we are building is the BUILD platform.
90 # Additionally for the compiler, the platform this compiler will
91 # generate code for is the TARGET.  TARGET is not meaningful outside
92 # the compiler sources.
93 #
94 # Guidelines for when to use HOST vs. TARGET:
95 #
96 #  - In the build system (Makefile, foo.mk), normally we should test
97 #    $(HOSTPLATFORM).  There are some cases (eg. installation), where
98 #    we expect $(HOSTPLATFORM)==$(TARGETPLATFORM), so in those cases it
99 #    doesn't matter which is used.
100 #
101 #  - In the compiler itself, we should test HOST or TARGET depending
102 #    on whether the conditional relates to the code being generated, or
103 #    the platform on which the compiler is running.  See the section
104 #    on "Coding Style" in the commentary for more details.
105 #
106 #  - In all other code, we should be testing HOST only.
107 #
108 # NOTE: cross-compiling is not well supported by the build system.
109 # You have to do a lot of work by hand to cross compile: see the
110 # section on "Porting GHC" in the Building Guide.
111
112 HOSTPLATFORM                    = @HostPlatform@
113 TARGETPLATFORM                  = @TargetPlatform@
114 BUILDPLATFORM                   = @BuildPlatform@
115
116 # Hack alert:
117 # in one or two places, we need to get at the OS version (major and
118 # perhaps even minor), HostOS_Full is the OS name reported by
119 # AC_CANONICAL_SYSTEM.
120 #
121 HostPlatform_CPP                = @HostPlatform_CPP@
122 HostArch_CPP                    = @HostArch_CPP@
123 HostOS_CPP                      = @HostOS_CPP@
124 HostOS_Full                     = @HostOS_Full@
125 HostVendor_CPP                  = @HostVendor_CPP@
126
127 TargetPlatform_CPP              = @TargetPlatform_CPP@
128 TargetArch_CPP                  = @TargetArch_CPP@
129 TargetOS_CPP                    = @TargetOS_CPP@
130 TargetVendor_CPP                = @TargetVendor_CPP@
131
132 BuildPlatform_CPP               = @BuildPlatform_CPP@
133 BuildArch_CPP                   = @BuildArch_CPP@
134 BuildOS_CPP                     = @BuildOS_CPP@
135 BuildVendor_CPP                 = @BuildVendor_CPP@
136
137 @HostPlatform_CPP@_HOST           = 1
138 @TargetPlatform_CPP@_TARGET       = 1
139 @BuildPlatform_CPP@_BUILD         = 1
140
141 @HostArch_CPP@_HOST_ARCH          = 1
142 @TargetArch_CPP@_TARGET_ARCH      = 1
143 @BuildArch_CPP@_BUILD_ARCH        = 1
144
145 @HostOS_CPP@_HOST_OS              = 1
146 @TargetOS_CPP@_TARGET_OS          = 1
147 @BuildOS_CPP@_BUILD_OS            = 1
148
149 @HostVendor_CPP@_HOST_VENDOR      = 1
150 @TargetVendor_CPP@_TARGET_VENDOR  = 1
151 @BuildVendor_CPP@_BUILD_VENDOR    = 1
152
153 ################################################################################
154 #
155 #               Global configuration options
156 #
157 ################################################################################
158
159 # Leading underscores on symbol names in object files
160 # Valid options: YES/NO
161 #
162 LeadingUnderscore=@LeadingUnderscore@
163
164 # Pin a suffix on executables? If so, what (Windows only).
165 exeext=@exeext@
166 soext=@soext@
167
168 # Windows=YES if on a Windows platform
169 ifneq "$(findstring $(HostOS_CPP), mingw32 cygwin32)" ""
170 Windows=YES
171 else
172 Windows=NO
173 endif
174
175 # BootingFromHc - build GHC and the libraries from .hc files?
176 BootingFromHc = @BootingFromHc@
177
178 # BootingFromUnregisterisedHc - treat .hc files as containing unregisterised
179 # rather than registerised code, i.e., disable the mangler?
180 BootingFromUnregisterisedHc = @BootingFromUnregisterisedHc@
181
182 #
183 # Which ways should DocBook XML documents be built?
184 # options are: dvi ps pdf html chm HxS
185 #
186 XMLDocWays=
187
188 # Should we build haddock docs?
189 HADDOCK_DOCS = YES
190 # And HsColour the sources?
191 HSCOLOUR_SRCS = YES
192
193 # Should we build latex docs?
194 LATEX_DOCS = NO
195
196 # Mac OS X deployment target (to cross-compile for older OS versions)
197 #
198 MACOSX_DEPLOYMENT_VERSION = @MACOSX_DEPLOYMENT_VERSION@
199 MACOSX_DEPLOYMENT_SDK = @MACOSX_DEPLOYMENT_SDK@
200
201 ifneq "$(MACOSX_DEPLOYMENT_VERSION)" ""
202 MACOSX_DEPLOYMENT_CC_OPTS = -mmacosx-version-min=$(MACOSX_DEPLOYMENT_VERSION) \
203                             -isysroot $(MACOSX_DEPLOYMENT_SDK) \
204                             --no-builtin-fprintf
205 MACOSX_DEPLOYMENT_LD_OPTS = -mmacosx-version-min=$(MACOSX_DEPLOYMENT_VERSION) \
206                             -Wl,-syslibroot,$(MACOSX_DEPLOYMENT_SDK)
207 # We don't extend SRC_CC_OPTS and friends here directly, as (a) they may get
208 # overwritten in build.mk and (b) we must not use the deployment options in
209 # stage 1 or we get a linker error if the bootstrap compiler is for a more 
210 # recent OS version.
211 #
212 # We need --no-builtin-fprintf, as the use of the builtin function optimisation
213 # for fprintf together with #include "PosixSource" in the RTS leads to the
214 # use of fwrite$UNIX2003 (with GCC 4.0.1 on Mac OS X 10.5.2).
215 endif
216
217 ################################################################################
218 #
219 # Variables that control how the compiler itself is built
220 #
221 ################################################################################
222
223 # The compiler used to build GHC is $(GHC).  To change the actual compiler
224 # used, re-configure with --with-ghc=<path-to-ghc>.
225
226 # Extra ways in which to build the compiler (for example, you might want to
227 # build a profiled compiler so you can see where it spends its time)
228 GhcCompilerWays=
229
230 # Extra option flags to pass to the compiler that compiles the compiler
231 # (Ones that are essential are wired into compiler/Makefile)
232 # Typical options to use here:
233 #
234 #       -DDEBUG         include debugging code and assertions (will make the
235 #                       compiler slower and produce debugging output, but useful
236 #                       for development)
237 #
238 #       -dcore-lint     check the types after every pass of the compiler;
239 #                       a pretty strong internal check of the compiler being
240 #                       used to compile GHC.  Useful when bootstrapping.
241 GhcHcOpts=-Rghc-timing
242
243 # Extra options added to specific stages of the compiler bootstrap.
244 # These are placed later on the command line, and may therefore
245 # override options from $(GhcHcOpts).
246 GhcStage1HcOpts=
247 GhcStage2HcOpts=-O2
248 GhcStage3HcOpts=-O2
249
250 GhcProfiled=NO
251 GhcDebugged=NO
252 GhcLibProfiled=$(if $(filter p,$(GhcLibWays)),YES,NO)
253
254 # Build shared and/or static libs?
255 BuildSharedLibs=@BuildSharedLibs@
256 # ToDo later:
257 # BuildStaticLibs=@BuildStaticLibs@
258
259 # Build a compiler that will build *unregisterised* libraries and
260 # binaries by default.  Unregisterised code is supposed to compile and
261 # run without any support for architecture-specific assembly mangling,
262 # register assignment or tail-calls, and is therefore a good way to get
263 # started when porting GHC to new architectures.
264 #
265 # If this is set to NO, you can still use the unregisterised way
266 # (way 'u') to get unregisterised code, but the default way will be
267 # registerised.
268 #
269 # NOTE: the stage1 compiler will be a registerised binary (assuming
270 # the compiler you build with is generating registerised binaries), but
271 # the stage2 compiler will be an unregisterised binary.
272 #
273 ifneq "$(findstring $(HostArch_CPP), alpha hppa)" ""
274 GhcUnregisterised=YES
275 else
276 GhcUnregisterised=NO
277 endif
278
279 # Build a compiler with a native code generator backend
280 # (as well as a C backend)
281 #
282 # Target platforms supported:
283 #   i386, powerpc
284 #   sparc has bitrotted
285 #   AIX is not supported 
286 ArchSupportsNCG=$(strip $(patsubst $(HostArch_CPP), YES, $(findstring $(HostArch_CPP), i386 x86_64 powerpc)))
287 OsSupportsNCG=$(strip $(patsubst $(HostOS_CPP), YES, $(patsubst aix,,$(HostOS_CPP))))
288
289 # lazy test, because $(GhcUnregisterised) might be set in build.mk later.
290 GhcWithNativeCodeGen=$(strip\
291     $(if $(filter YESYESNO,\
292                   $(OsSupportsNCG)$(ArchSupportsNCG)$(GhcUnregisterised)),YES,NO))
293
294 HaveLibDL = @HaveLibDL@
295
296 # ArchSupportsSMP should be set iff there is support for that arch in
297 # includes/SMP.h
298 ArchSupportsSMP=$(strip $(patsubst $(HostArch_CPP), YES, $(findstring $(HostArch_CPP), i386 x86_64 sparc powerpc)))
299
300 # lazy test, because $(GhcUnregisterised) might be set in build.mk later.
301 GhcWithSMP=$(strip $(if $(filter YESNO, $(ArchSupportsSMP)$(GhcUnregisterised)),YES,NO))
302
303 # Whether to include GHCi in the compiler.  Depends on whether the RTS linker
304 # has support for this OS/ARCH combination.
305
306 OsSupportsGHCi=$(strip $(patsubst $(HostOS_CPP), YES, $(findstring $(HostOS_CPP), mingw32 cygwin32 linux solaris2 freebsd netbsd openbsd darwin)))
307 ArchSupportsGHCi=$(strip $(patsubst $(HostArch_CPP), YES, $(findstring $(HostArch_CPP), i386 x86_64 powerpc sparc sparc64)))
308
309 ifeq "$(OsSupportsGHCi)$(ArchSupportsGHCi)" "YESYES"
310 GhcWithInterpreter=YES
311 else 
312 GhcWithInterpreter=NO
313 endif
314
315 # GhcEnableTablesNextToCode tells us whether the target architecture
316 # supports placing info tables directly before the entry code
317 # (see TABLES_NEXT_TO_CODE in the RTS).  Whether we actually compile for
318 # TABLES_NEXT_TO_CODE depends on whether we're building unregisterised
319 # code or not, which may be decided by options to the compiler later.
320 ifneq "$(findstring $(TargetArch_CPP)X, ia64X powerpc64X)" ""
321 GhcEnableTablesNextToCode=NO
322 else
323 GhcEnableTablesNextToCode=YES
324 endif
325
326 # On Windows we normally want to make a relocatable bindist, to we
327 # ignore flags like libdir
328 ifeq "$(Windows)" "YES"
329 RelocatableBuild = YES
330 else
331 RelocatableBuild = NO
332 endif
333
334 # When building bindists we set this to yes so that the binaries are as
335 # portable as possible.
336 BeConservative = NO
337
338 #
339 # Building various ways?
340 # (right now, empty if not).
341 BuildingParallel=$(subst mp,YES,$(filter mp,$(WAYS)))
342 BuildingGranSim=$(subst mg,YES,$(filter mg,$(WAYS)))
343
344 # Interface file version (hi-boot files only)
345 #
346 # A GHC built with HscIfaceFileVersion=n will look for 
347 #       M.hi-boot-n, and only then for 
348 #       M.hi-boot.
349 # (It'll be happy with the latter if the former doesn't exist.)
350 #
351 #
352 # This variable is used ONLY for hi-boot files.  Its only purpose is
353 # to allow you to have a single directory with multiple .hi-boot files
354 # for the same module, each corresponding to a different version of
355 # GHC.
356 #
357 # HscIfaceFileVersion is propagated to hsc via
358 # compiler/main/Config.hs, which is automatically generated by
359 # compiler/Makefile.
360
361 HscIfaceFileVersion=6
362
363 #------------------------------------------------------------------------------
364 # Options for Libraries
365
366 # Which directory (in libraries/) contains the integer library?
367 INTEGER_LIBRARY=integer-gmp
368
369 # What extra ways to build the libraries in
370 # In addition to the normal sequential way, the default is to also build
371 # profiled prelude libraries.
372 # When booting from .hc files, turn this off.
373 ifeq "$(BootingFromHc)" "YES"
374 GhcLibWays=
375 else
376 GhcLibWays=p
377 endif
378
379 ifeq "$(BuildSharedLibs)" "YES"
380 GhcLibWays += dyn
381 endif
382
383 # In addition, the RTS is built in some further variations.  Ways that
384 # make sense here:
385
386 #   thr         : threaded
387 #   thr_p       : threaded profiled
388 #   debug       : debugging (compile with -g for the C compiler, and -DDEBUG)
389 #   debug_p     : debugging profiled
390 #   thr_debug   : debugging threaded
391 #   thr_debug_p : debugging threaded profiled
392 #   t           : ticky-ticky profiling
393 #   debug_t     : debugging ticky-ticky profiling
394 #
395 GhcRTSWays=
396
397 # Usually want the debug version
398 ifeq "$(BootingFromHc)" "NO"
399 GhcRTSWays += debug 
400 endif
401
402 ifeq "$(BuildSharedLibs)" "YES"
403 GhcRTSWays += dyn debug_dyn thr_dyn thr_debug_dyn
404 endif
405
406 # Want the threaded versions unless we're unregisterised
407 # Defer the check until later by using $(if..), because GhcUnregisterised might
408 # be set in build.mk, which hasn't been read yet.
409 GhcRTSWays += $(if $(findstring NO, $(GhcUnregisterised)),thr thr_p thr_debug,)
410
411 # We can only build GHCi threaded if we have a threaded RTS:
412 GhcThreaded = $(if $(findstring thr,$(GhcRTSWays)),YES,NO)
413
414 # Option flags to pass to GHC when it's compiling modules in
415 # fptools/libraries.  Typically these are things like -O or
416 # -dcore-lint or -H32m.  The ones that are *essential* are wired into
417 # the build system.
418 #
419 #       -O(2) is pretty desirable, otherwise no inlining of prelude
420 #               things (incl "+") happens when compiling with this compiler
421 #
422 #       -XGenerics switches on generation of support code for 
423 #               derivable type classes.  This is now off by default,
424 #               but we switch it on for the libraries so that we generate
425 #               the code in case someone importing wants it
426
427 GhcLibHcOpts=-O2 -Rghc-timing -XGenerics
428
429 # Win32 only: Enable the RTS and libraries to be built as DLLs
430 DLLized=@EnableWin32DLLs@
431
432 # Strip local symbols from libraries?  This can make the libraries smaller,
433 # but makes debugging somewhat more difficult.  Doesn't work with all ld's.
434 #
435 StripLibraries=NO
436
437 # These are the URL patterns that Haddock uses to generate the "Source
438 # File" links on each page.
439 PackageSourceURL = http://darcs.haskell.org/packages/$(PACKAGE)/%{FILE}
440
441 # ----------------------------------------------------------------------------
442 # Object-file splitting
443 #
444 #       Set SplitObjs=YES or NO in your build.mk
445 #
446 #       Don't use -split-objs in in GhcLibHcOpts, because the build
447 #               system needs to do other special magic if you are
448 #               doing object-file splitting
449
450 # lazy test, so that $(GhcUnregisterised) can be set in build.mk
451 SplitObjs=$(strip $(if $(filter $(TargetArch_CPP),i386 x86_64 powerpc sparc),\
452                     $(if $(filter YES,$(BootingFromHC)),\
453                       NO,\
454                       $(if $(filter NO,$(GhcUnregisterised)),\
455                         YES,\
456                         NO)),\
457                     NO))
458
459 # Math library
460 LIBM=@LIBM@
461
462 # .NET interop support?
463 #
464 DotnetSupport=NO
465
466 # Build unix package?
467 #
468 GhcLibsWithUnix=@GhcLibsWithUnix@
469
470 # ----------------------------------------------------------------------------
471 # Options for GHC's RTS
472
473 # For an optimised RTS (you probably don't want to change these; we build
474 # a debugging RTS by default now.  Use -debug to get it).
475 GhcRtsHcOpts=-optc-O2
476 GhcRtsCcOpts=-fomit-frame-pointer
477
478 # Include the front panel code?  Needs GTK+.
479 GhcRtsWithFrontPanel = NO
480
481 # Include support for CPU performance counters via the PAPI library in the RTS?
482 # (PAPI: http://icl.cs.utk.edu/papi/)
483 GhcRtsWithPapi = NO
484 PapiLibDir=
485 PapiIncludeDir=
486
487 ################################################################################
488 #
489 #               nofib
490 #
491 #       nofib specific options
492 #
493 ################################################################################
494
495 WithNofibHc = $(GHC_INPLACE)
496
497 # NoFibSubDirs controls which set of tests should be run
498 # You can run one or more of
499 #       imaginary 
500 #       spectral
501 #       real
502 #       parallel
503 #       PRIVATE
504 #       PENDING
505 #       UNUSED
506 NoFibSubDirs = imaginary spectral real
507
508 # The different ways to build nofib. Default is just to mirror
509 # what is done for the ghc prelude libraries.
510 #
511 NoFibWays = $(GhcLibWays)
512
513 # Haskell compiler options for nofib
514 NoFibHcOpts = -O
515
516 # Number of times to run each program
517 NoFibRuns = 5
518
519 ################################################################################
520 #
521 #               Paths (see paths.mk)
522 #
523 ################################################################################
524
525 # Directory used by GHC (and possibly other tools) for storing
526 # temporary files.  If your TMPDIR isn't big enough, either override
527 # this in build.mk or set your environment variable "TMPDIR" to point
528 # to somewhere with more space.  (TMPDIR=. is a good choice).
529
530 # DEFAULT_TMPDIR isn't called TMPDIR because GNU make tends to
531 # override an environment variable with the value of the make variable
532 # of the same name (if it exists) when executing sub-processes, so
533 # setting the TMPDIR env var would have no effect in the build tree.
534
535 DEFAULT_TMPDIR          = /tmp
536 ifeq "$(TARGETPLATFORM)" "i386-unknown-cygwin32"
537 DEFAULT_TMPDIR          = /C/TEMP
538 endif
539 ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
540 DEFAULT_TMPDIR          = /C/TEMP
541 endif
542
543 # FPTOOLS_TOP_ABS: the top of the fptools hierarchy, absolute path.
544 # On Windows this is a c:/foo/bar style path.
545 FPTOOLS_TOP_ABS         = @hardtop@
546
547 BIN_DIST_TOPDIR_ABS=$(FPTOOLS_TOP_ABS)
548 BIN_DIST_DIR=$(BIN_DIST_TOPDIR_ABS)/$(BIN_DIST_NAME)
549
550 BIN_DIST_NAME=ghc-$(ProjectVersion)
551 BIN_DIST_TAR=$(FPTOOLS_TOP_ABS)/$(BIN_DIST_NAME)-$(TARGETPLATFORM).tar
552 BIN_DIST_TAR_BZ2=$(BIN_DIST_TAR).bz2
553 BIN_DIST_PREP_DIR=$(FPTOOLS_TOP_ABS)/bindist-prep
554 BIN_DIST_PREP=$(BIN_DIST_PREP_DIR)/$(BIN_DIST_NAME)
555 BIN_DIST_LIST=$(FPTOOLS_TOP_ABS)/bindist-list
556
557 # Definition of installation directories, we don't use half of these, but since
558 # the configure script has them on offer while passing through, we might as well
559 # set them. Note that we have to be careful, because the GNU coding standards
560 # have changed a bit over the course of time, and autoconf development reflects
561 # this.
562 #
563 # A little bit of history regarding autoconf and GNU coding standards, use this
564 # as a cheat-sheet for the stuff below:
565 #
566 # variable    | default < 2.60     | default >= 2.60
567 # ------------+--------------------+--------------------------------------
568 # exec_prefix | ${prefix}          | ${prefix}
569 # libdir      | ${exec_prefix}/lib | ${exec_prefix}/lib
570 # datarootdir | NONE!              | ${prefix}/share
571 # datadir     | ${prefix}/share    | ${datarootdir}
572 # infodir     | ${prefix}/info     | ${datarootdir}/info
573 # mandir      | ${prefix}/man      | ${datarootdir}/man
574 # docdir      | NONE!              | ${datarootdir}/doc/${PACKAGE_TARNAME}
575 # htmldir     | NONE!              | ${docdir}
576 # dvidir      | NONE!              | ${docdir}
577 # pdfdir      | NONE!              | ${docdir}
578 # psdir       | NONE!              | ${docdir}
579 #
580 # NOTE: The default e.g. ${docdir} above means that autoconf substitutes the
581 # string "${docdir}", not the value of docdir! This is crucial for the GNU
582 # coding standards.
583
584 # This gets used in the default docdir when autoconf >= 2.60 is used
585 PACKAGE_TARNAME := @PACKAGE_TARNAME@
586
587 prefix          := @prefix@
588
589 # New autoconf (>= 2.60?) make a configure with a --datarootdir=DIR flag.
590 # However, in order to support older autoconf's we don't use it.
591 # datarootdir is set lower down instead.
592 # But, as datadir is defined in terms of datarootdir, we also need to
593 # set it to the value (if any) that configure gives it here.
594 datarootdir     := @datarootdir@
595
596 exec_prefix     := @exec_prefix@
597 bindir          := @bindir@
598 datadir0        := @datadir@
599 libdir0         := @libdir@
600 includedir      := @includedir@
601 mandir          := @mandir@
602 dynlibdir       := @libdir@
603
604 ifeq "$(RelocatableBuild)" "YES"
605
606 # Hack: our directory layouts tend to be different on Windows, so
607 # hack around configure's bogus assumptions here.
608 datarootdir := $(prefix)
609 datadir     := $(prefix)
610 libdir      := $(prefix)
611
612 docdir    := $(prefix)/doc
613 htmldir   := $(docdir)
614 dvidir    := $(docdir)
615 pdfdir    := $(docdir)
616 psdir     := $(docdir)
617
618 else
619
620 # Unix: override libdir and datadir to put ghc-specific stuff in
621 # a subdirectory with the version number included.
622 #
623 # datadir is set to libdir here as GHC needs package.conf and unlit
624 # to be in the same place (and things like ghc-pkg need to agree on
625 # where package.conf is, so we just set it globally).
626 #
627 datarootdir := $(datadir0)
628 libdir      := $(libdir0)/ghc-$(ProjectVersion)
629 datadir     := $(libdir)
630
631 # New autoconf (>= 2.60?) make a configure with --docdir=DIR etc flags.
632 # However, in order to support older autoconf's we don't use them.
633
634 #docdir    := @docdir@
635 #htmldir   := @htmldir@
636 #dvidir    := @dvidir@
637 #pdfdir    := @pdfdir@
638 #psdir     := @psdir@
639
640 docdir    := $(datarootdir)/doc/ghc
641 htmldir   := $(docdir)
642 dvidir    := $(docdir)
643 pdfdir    := $(docdir)
644 psdir     := $(docdir)
645
646 endif # Windows
647
648 headerdir := $(libdir)/include
649
650 # Default place for putting interface files is $(libdir)
651 # (overriden for packages in package.mk)
652 ifacedir                = $(libdir)
653
654 # NOTE: by intention, libexecdir and libdir point to 
655 # the same place.
656 #  => Only way to override this is to set libexecdir= on the command line.
657 #     (NOTE: configure script setting is ignored).
658 libexecdir              = $(libdir)
659
660 GHC_PKG_PROG = $(FPTOOLS_TOP_ABS)/$(GHC_PKG_DIR_REL)/install-inplace/bin/ghc-pkg
661
662 #-----------------------------------------------------------------------------
663 # install configuration
664
665 #
666 # Set this to have files installed with a specific owner
667 #
668 INSTALL_OWNER =
669
670
671 # Set this to have files installed with a specific group
672 #
673 INSTALL_GROUP =
674
675 #
676 # Invocations of `install' for the four different classes
677 # of targets:
678 #
679 INSTALL_PROGRAM = $(INSTALL) -m 755
680 INSTALL_SCRIPT  = $(INSTALL) -m 755
681 INSTALL_SHLIB   = $(INSTALL) -m 755
682 INSTALL_DATA    = $(INSTALL) -m 644
683 INSTALL_HEADER  = $(INSTALL) -m 644
684 INSTALL_MAN     = $(INSTALL) -m 644
685 INSTALL_DIR     = $(MKDIRHIER)
686
687 #
688 # runhaskell and hsc2hs are special, in that other compilers besides
689 # GHC might provide them.  Systems with a package manager often come
690 # with tools to manage this kind of clash, e.g. RPM's
691 # update-alternatives.  When building a distribution for such a system,
692 # we recommend setting both of the following to 'YES'.
693 #
694 # NO_INSTALL_RUNHASKELL = YES
695 # NO_INSTALL_HSC2HS     = YES
696 #
697 # NB. we use negative tests here because for binary-distributions we cannot
698 # test build-time variables at install-time, so they must default to on.
699
700 # -----------------------------------------------------------------------------
701 # Utilities programs: flags 
702
703 # If you want to give any standard flags to pretty much any utility
704 # (see utils.mk for a complete list), by adding a line here
705 #
706 #       SRC_P_OPTS += ...
707 #
708 # where P is the utility. For example, to add -O to all Haskell
709 # compilations, 
710 #
711 #       SRC_HC_OPTS += -O
712
713 SRC_HC_OPTS += -H32m -O
714
715 # These flags make flex 8-bit
716 SRC_FLEX_OPTS   += -8
717
718 # lint gets all CPP's flags too
719 SRC_LINT_OPTS           += -axz -DLINT $(SRC_CPP_OPTS)
720 WAY$(_way)_LINT_OPTS    += WAY$(_way)_CPP_OPTS
721
722 # Default fptools options for dllwrap.
723 SRC_BLD_DLL_OPTS += --target=i386-mingw32
724
725 # Flags for CPP when running GreenCard on .pgc files
726 GC_CPP_OPTS += -P -E -x c -traditional -D__GLASGOW_HASKELL__
727
728
729 ################################################################################
730 #
731 #       Layout of the source tree
732 #
733 ################################################################################
734
735 # Here we provide defines for the various directories in the source tree,
736 # so we can move things around more easily.  A define $(GHC_FOO_DIR_REL)
737 # indicates a directory relative to the top of the source tree, whereas
738 # $(GHC_FOO_DIR) is a directory relative to the current directory.
739 # $(GHC_FOO_DIR_ABS) is the absolute path to the directory.
740
741 GHC_UTILS_DIR_REL       = utils
742 GHC_INCLUDE_DIR_REL     = includes
743 GHC_COMPILER_DIR_REL = ghc
744 GHC_RTS_DIR_REL         = rts
745 GHC_UTILS_DIR_REL       = utils
746 GHC_DRIVER_DIR_REL      = driver
747 GHC_COMPAT_DIR_REL      = compat
748
749 GHC_MKDEPENDC_DIR_REL   = $(GHC_UTILS_DIR_REL)/mkdependC
750 GHC_LTX_DIR_REL         = $(GHC_UTILS_DIR_REL)/ltx
751 GHC_RUNTEST_DIR_REL     = $(GHC_UTILS_DIR_REL)/runstdtest
752 GHC_LNDIR_DIR_REL       = $(GHC_UTILS_DIR_REL)/lndir
753 GHC_MKDIRHIER_DIR_REL   = $(GHC_UTILS_DIR_REL)/mkdirhier
754 GHC_DOCBOOK_DIR_REL     = $(GHC_UTILS_DIR_REL)/docbook
755 GHC_UNLIT_DIR_REL       = $(GHC_UTILS_DIR_REL)/unlit
756 GHC_HP2PS_DIR_REL       = $(GHC_UTILS_DIR_REL)/hp2ps
757 GHC_HSTAGS_DIR_REL      = $(GHC_UTILS_DIR_REL)/hasktags
758 GHC_GHCTAGS_DIR_REL     = $(GHC_UTILS_DIR_REL)/ghctags
759 GHC_HSC2HS_DIR_REL      = $(GHC_UTILS_DIR_REL)/hsc2hs
760 GHC_TOUCHY_DIR_REL      = $(GHC_UTILS_DIR_REL)/touchy
761 GHC_PKG_DIR_REL         = $(GHC_UTILS_DIR_REL)/ghc-pkg
762 GHC_GENPRIMOP_DIR_REL   = $(GHC_UTILS_DIR_REL)/genprimopcode
763 GHC_GENAPPLY_DIR_REL    = $(GHC_UTILS_DIR_REL)/genapply
764
765 GHC_MANGLER_DIR_REL     = $(GHC_DRIVER_DIR_REL)/mangler
766 GHC_SPLIT_DIR_REL       = $(GHC_DRIVER_DIR_REL)/split
767 GHC_SYSMAN_DIR_REL      = $(GHC_RTS_DIR_REL)/parallel
768
769 INPLACE_DATA_DIR        = $(FPTOOLS_TOP_ABS)/inplace-datadir
770
771 GHC_UTILS_DIR           = $(FPTOOLS_TOP)/$(GHC_UTILS_DIR_REL)
772 GHC_INCLUDE_DIR         = $(FPTOOLS_TOP)/$(GHC_INCLUDE_DIR_REL)
773 GHC_COMPILER_DIR        = $(FPTOOLS_TOP)/$(GHC_COMPILER_DIR_REL)
774 GHC_RTS_DIR             = $(FPTOOLS_TOP)/$(GHC_RTS_DIR_REL)
775 GHC_UTILS_DIR           = $(FPTOOLS_TOP)/$(GHC_UTILS_DIR_REL)
776 GHC_DRIVER_DIR          = $(FPTOOLS_TOP)/$(GHC_DRIVER_DIR_REL)
777 GHC_COMPAT_DIR          = $(FPTOOLS_TOP)/$(GHC_COMPAT_DIR_REL)
778
779 GHC_MKDEPENDC_DIR       = $(FPTOOLS_TOP)/$(GHC_MKDEPENDC_DIR_REL)
780 GHC_LTX_DIR             = $(FPTOOLS_TOP)/$(GHC_LTX_DIR_REL)
781 GHC_RUNTEST_DIR         = $(FPTOOLS_TOP)/$(GHC_RUNTEST_DIR_REL)
782 GHC_LNDIR_DIR           = $(FPTOOLS_TOP)/$(GHC_LNDIR_DIR_REL)
783 GHC_MKDIRHIER_DIR       = $(FPTOOLS_TOP)/$(GHC_MKDIRHIER_DIR_REL)
784 GHC_DOCBOOK_DIR         = $(FPTOOLS_TOP)/$(GHC_DOCBOOK_DIR_REL)
785 GHC_UNLIT_DIR           = $(FPTOOLS_TOP)/$(GHC_UNLIT_DIR_REL)
786 GHC_HP2PS_DIR           = $(FPTOOLS_TOP)/$(GHC_HP2PS_DIR_REL)
787 GHC_HSTAGS_DIR          = $(FPTOOLS_TOP)/$(GHC_HSTAGS_DIR_REL)
788 GHC_GHCTAGS_DIR         = $(FPTOOLS_TOP)/$(GHC_GHCTAGS_DIR_REL)
789 GHC_HSC2HS_DIR          = $(FPTOOLS_TOP_ABS)/$(GHC_HSC2HS_DIR_REL)
790 GHC_TOUCHY_DIR          = $(FPTOOLS_TOP)/$(GHC_TOUCHY_DIR_REL)
791 GHC_PKG_DIR             = $(FPTOOLS_TOP)/$(GHC_PKG_DIR_REL)
792 GHC_GENPRIMOP_DIR       = $(FPTOOLS_TOP)/$(GHC_GENPRIMOP_DIR_REL)
793 GHC_GENAPPLY_DIR        = $(FPTOOLS_TOP)/$(GHC_GENAPPLY_DIR_REL)
794
795 GHC_MANGLER_DIR         = $(FPTOOLS_TOP)/$(GHC_MANGLER_DIR_REL)
796 GHC_SPLIT_DIR           = $(FPTOOLS_TOP)/$(GHC_SPLIT_DIR_REL)
797 GHC_SYSMAN_DIR          = $(FPTOOLS_TOP)/$(GHC_SYSMAN_DIR_REL)
798
799 GHC_UTILS_DIR_ABS       = $(FPTOOLS_TOP_ABS)/$(GHC_UTILS_DIR_REL)
800 GHC_INCLUDE_DIR_ABS     = $(FPTOOLS_TOP_ABS)/$(GHC_INCLUDE_DIR_REL)
801 GHC_COMPILER_DIR_ABS    = $(FPTOOLS_TOP_ABS)/$(GHC_COMPILER_DIR_REL)
802 GHC_RTS_DIR_ABS         = $(FPTOOLS_TOP_ABS)/$(GHC_RTS_DIR_REL)
803 GHC_UTILS_DIR_ABS       = $(FPTOOLS_TOP_ABS)/$(GHC_UTILS_DIR_REL)
804 GHC_DRIVER_DIR_ABS      = $(FPTOOLS_TOP_ABS)/$(GHC_DRIVER_DIR_REL)
805 GHC_COMPAT_DIR_ABS      = $(FPTOOLS_TOP_ABS)/$(GHC_COMPAT_DIR_REL)
806
807 GHC_MKDEPENDC_DIR_ABS   = $(FPTOOLS_TOP_ABS)/$(GHC_MKDEPENDC_DIR_REL)
808 GHC_LTX_DIR_ABS         = $(FPTOOLS_TOP_ABS)/$(GHC_LTX_DIR_REL)
809 GHC_RUNTEST_DIR_ABS     = $(FPTOOLS_TOP_ABS)/$(GHC_RUNTEST_DIR_REL)
810 GHC_LNDIR_DIR_ABS       = $(FPTOOLS_TOP_ABS)/$(GHC_LNDIR_DIR_REL)
811 GHC_MKDIRHIER_DIR_ABS   = $(FPTOOLS_TOP_ABS)/$(GHC_MKDIRHIER_DIR_REL)
812 GHC_DOCBOOK_DIR_ABS     = $(FPTOOLS_TOP_ABS)/$(GHC_DOCBOOK_DIR_REL)
813 GHC_UNLIT_DIR           = $(FPTOOLS_TOP_ABS)/$(GHC_UNLIT_DIR_REL)
814 GHC_HP2PS_DIR_ABS       = $(FPTOOLS_TOP_ABS)/$(GHC_HP2PS_DIR_REL)
815 GHC_HSTAGS_DIR_ABS      = $(FPTOOLS_TOP_ABS)/$(GHC_HSTAGS_DIR_REL)
816 GHC_GHCTAGS_DIR_ABS     = $(FPTOOLS_TOP_ABS)/$(GHC_GHCTAGS_DIR_REL)
817 GHC_HSC2HS_DIR_ABS      = $(FPTOOLS_TOP_ABS)/$(GHC_HSC2HS_DIR_REL)
818 GHC_TOUCHY_DIR_ABS      = $(FPTOOLS_TOP_ABS)/$(GHC_TOUCHY_DIR_REL)
819 GHC_PKG_DIR_ABS         = $(FPTOOLS_TOP_ABS)/$(GHC_PKG_DIR_REL)
820 GHC_GENPRIMOP_DIR_ABS   = $(FPTOOLS_TOP_ABS)/$(GHC_GENPRIMOP_DIR_REL)
821 GHC_GENAPPLY_DIR_ABS    = $(FPTOOLS_TOP_ABS)/$(GHC_GENAPPLY_DIR_REL)
822 GHC_COMPILER_DIR_ABS    = $(FPTOOLS_TOP_ABS)/$(GHC_COMPILER_DIR_REL)
823
824 GHC_MANGLER_DIR_ABS     = $(FPTOOLS_TOP_ABS)/$(GHC_MANGLER_DIR_REL)
825 GHC_SYSMAN_DIR_ABS      = $(FPTOOLS_TOP_ABS)/$(GHC_SYSMAN_DIR_REL)
826 GHC_SPLIT_DIR_ABS       = $(FPTOOLS_TOP_ABS)/$(GHC_SPLIT_DIR_REL)
827
828 # -----------------------------------------------------------------------------
829 # Names of programs in the GHC tree
830 #
831 #      xxx_PGM          the name of an executable, without the path
832 #      xxx              the executable relative to the current dir
833
834 GHC_UNLIT_PGM           = unlit$(exeext)
835 GHC_HP2PS_PGM           = hp2ps
836 GHC_HSTAGS_PGM          = hasktags
837 GHC_GHCTAGS_INPLACE_PGM = ghctags-inplace
838 GHC_HSC2HS_INPLACE_PGM  = hsc2hs
839 GHC_TOUCHY_PGM          = touchy$(exeext)
840 GHC_MANGLER_PGM         = ghc-asm
841 GHC_SPLIT_PGM           = ghc-split
842 GHC_SYSMAN_PGM          = SysMan
843 GHC_GENPRIMOP_PGM       = genprimopcode
844 GHC_GENAPPLY_PGM        = genapply
845 GHC_MKDEPENDC_PGM       = mkdependC
846 GHC_LTX_PGM             = ltx
847 GHC_MKDIRHIER_PGM       = mkdirhier
848 GHC_LNDIR_PGM           = lndir
849 GHC_RUNTEST_PGM         = runstdtest
850
851 ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
852 GHC_CP                  = "xcopy /y"
853 GHC_PERL                = perl
854 else
855 GHC_CP                  = $(CP)
856 GHC_PERL                = $(PERL)
857 endif
858
859 UNLIT                   = $(GHC_UNLIT_DIR)/$(GHC_UNLIT_PGM)
860 HP2PS                   = $(GHC_HP2PS_DIR)/$(GHC_HP2PS_PGM)
861 HSTAGS                  = $(GHC_HSTAGS_DIR)/$(GHC_HSTAGS_PGM)
862 GHCTAGS_INPLACE         = $(GHC_GHCTAGS_DIR)/$(GHC_GHCTAGS_INPLACE_PGM)
863 HSC2HS_INPLACE          = $(GHC_HSC2HS_DIR)/install-inplace/bin/$(GHC_HSC2HS_INPLACE_PGM)
864 MANGLER                 = $(GHC_MANGLER_DIR)/$(GHC_MANGLER_PGM)
865 SPLIT                   = $(GHC_SPLIT_DIR)/$(GHC_SPLIT_PGM)
866 SYSMAN                  = $(GHC_SYSMAN_DIR)/$(GHC_SYSMAN_PGM)
867 GHC_PKG_INPLACE         = $(GHC_PKG_PROG)
868 GENPRIMOP               = $(GHC_GENPRIMOP_DIR)/$(GHC_GENPRIMOP_PGM)
869 GENAPPLY                = $(GHC_GENAPPLY_DIR)/$(GHC_GENAPPLY_PGM)
870 MKDEPENDC               = $(GHC_MKDEPENDC_DIR)/$(GHC_MKDEPENDC_PGM)
871 LTX                     = $(GHC_LTX_DIR)/$(GHC_LTX_PGM)
872 MKDIRHIER               = $(GHC_MKDIRHIER_DIR)/$(GHC_MKDIRHIER_PGM)
873 LNDIR                   = $(GHC_LNDIR_DIR)/$(GHC_LNDIR_PGM)
874 RUNTEST                 = $(GHC_RUNTEST_DIR)/$(GHC_RUNTEST_PGM)
875
876 GENERATED_FILE  = chmod a-w
877 EXECUTABLE_FILE = chmod +x
878
879 #-----------------------------------------------------------------------------
880 # Haskell compilers and mkdependHS
881
882 # $(GHC), $(HBC) and $(NHC) point to installed versions of the relevant
883 # compilers, if available.
884 #
885 # $(HC) is a generic Haskell 98 compiler, set to $(GHC) by default.
886 # $(MKDEPENDHS) is the Haskell dependency generator (ghc -M).
887 #
888 # NOTE: Don't override $(GHC) in build.mk, use configure --with-ghc instead
889 # (because the version numbers have to be calculated).
890
891 GHC             = @WithGhc@
892 GhcDir          = $(dir $(GHC))
893
894 # Set to YES if $(GHC) has the editline package installed
895 GhcHasEditline  = @GhcHasEditline@
896
897 HBC             = @HBC@
898 NHC             = @NHC@
899
900 # Sometimes we want to invoke ghc from the build tree in different
901 # places (eg. it's handy to have a nofib & a ghc build in the same
902 # tree).  We can refer to "this ghc" as $(GHC_INPLACE):
903
904 GHC_INPLACE = $(GHC_STAGE1)
905 GHC_STAGE1  = $(GHC_COMPILER_DIR_ABS)/stage1-inplace/ghc
906 GHC_STAGE2  = $(GHC_COMPILER_DIR_ABS)/stage2-inplace/ghc
907 GHC_STAGE3  = $(GHC_COMPILER_DIR_ABS)/stage3-inplace/ghc
908 # XXX All those used to have -no-user-package-conf, but then we can't
909 # pass them to Cabal
910
911 BOOTSTRAPPING_CONF = $(FPTOOLS_TOP_ABS)/libraries/bootstrapping.conf
912
913 # NOTE: add -no-user-package-conf for stage 1-3 above, so that
914 # we avoid picking up any packages the user might happen to have
915 # installed for this GHC version.  They are bound to be incompatible
916 # with the packages we built in the tree.
917
918 ifeq "$(stage)" "2"
919   UseStage1 = YES
920 endif
921 ifneq "$(findstring YES, $(UseStage1) $(BootingFromHc))" ""
922
923 # We are using the stage1 compiler to compile Haskell code, set up
924 # some variables appropriately:
925 HC              =$(GHC_STAGE1)
926 MKDEPENDHS      =$(GHC_STAGE1)
927 USE_NEW_MKDEPEND_FLAGS = YES
928 GhcVersion      = @ProjectVersion@
929 GhcPatchLevel   = @ProjectPatchLevel@
930 # oops, these are wrong:
931 GhcMajVersion   = @GhcMajVersion@
932 GhcMinVersion   = @GhcMinVersion@
933
934 ghc_ge_607 = YES
935 ghc_ge_609 = YES
936
937 else # not UseStage1 or BootingFromHc
938
939 # Some useful GHC version predicates:
940 ghc_ge_607 = @ghc_ge_607@
941 ghc_ge_609 = @ghc_ge_609@
942
943 HC              = @WithHc@
944 MKDEPENDHS      = $(GHC)
945 USE_NEW_MKDEPEND_FLAGS = $(ghc_ge_609)
946 GhcVersion      = @GhcVersion@
947 GhcPatchLevel   = @GhcPatchLevel@
948 GhcMajVersion   = @GhcMajVersion@
949 GhcMinVersion   = @GhcMinVersion@
950
951 # We build a few packages using the installed GHC as part of the
952 # bootstrapping process.  These are installed into a local
953 # package.conf file, $(BOOTSTRAPPING_CONF).  When we invoke the
954 # installed GHC we need to pass it -package-conf $(BOOTSTRAPPING_CONF).
955 # So the following variables expand to -package-conf $(BOOTSTRAPPING_CONF)
956 # when $(HC) does *not* point to one of the GHC binaries built in
957 # the local tree.
958 #
959 BOOTSTRAPPING_PACKAGE_CONF_HC_OPTS =$(if $(findstring inplace, $(HC)),,-package-conf $(BOOTSTRAPPING_CONF))
960 BOOTSTRAPPING_PACKAGE_CONF_MKDEPENDHS_OPTS =$(if $(findstring inplace, $(MKDEPENDHS)),,-package-conf $(BOOTSTRAPPING_CONF))
961 endif
962
963 # Canonicalised ghc version number, used for easy (integer) version
964 # comparisons.  We must expand $(GhcMinVersion) to two digits by
965 # adding a leading zero if necessary:
966 ifneq "$(findstring $(GhcMinVersion), 0 1 2 3 4 5 6 7 8 9)" ""
967 GhcCanonVersion = $(GhcMajVersion)0$(GhcMinVersion)
968 else
969 GhcCanonVersion = $(GhcMajVersion)$(GhcMinVersion)
970 endif
971
972 #-----------------------------------------------------------------------------
973 # C compiler
974 #
975 # NB. Don't override $(WhatGccIsCalled) using build.mk,  re-configure using
976 # the flag --with-gcc=<blah> instead.  The reason is that the configure script
977 # needs to know which gcc you're using in order to perform its tests.
978
979 HaveGcc         = @HaveGcc@
980 UseGcc          = YES
981 WhatGccIsCalled = @WhatGccIsCalled@
982 GccVersion      = @GccVersion@
983 ifeq "$(strip $(HaveGcc))" "YES"
984 ifneq "$(strip $(UseGcc))"  "YES"
985   CC    = cc
986 else
987   CC    = $(WhatGccIsCalled)
988   GccDir = $(dir $(WhatGccIsCalled))
989 endif
990 endif
991
992 # default C compiler flags
993 SRC_CC_OPTS = @SRC_CC_OPTS@
994
995 ifeq "$(TARGETPLATFORM)" "ia64-unknown-linux"
996 SRC_CC_OPTS += -G0
997 endif
998
999 SRC_HSC2HS_OPTS += $(addprefix --cflag=,$(filter-out -O,$(SRC_CC_OPTS)))
1000 SRC_HSC2HS_OPTS += $(foreach d,$(GMP_INCLUDE_DIRS),-I$(d))
1001
1002 #-----------------------------------------------------------------------------
1003 # GMP Library (version 2.0.x or above)
1004 #
1005 HaveLibGmp      = @HaveLibGmp@
1006 LibGmp          = @LibGmp@
1007
1008 GMP_INCLUDE_DIRS=@GMP_INCLUDE_DIRS@
1009 GMP_LIB_DIRS=@GMP_LIB_DIRS@
1010
1011 #-----------------------------------------------------------------------------
1012 # GMP framework (Mac OS X)
1013 #
1014 HaveFrameworkGMP = @HaveFrameworkGMP@
1015
1016 #-----------------------------------------------------------------------------
1017 # Mingwex Library
1018 #
1019 HaveLibMingwEx  = @HaveLibMingwEx@
1020
1021 #-----------------------------------------------------------------------------
1022 # Flex (currently unused, could be moved to glafp-utils)
1023
1024 # FLEX                  = @LEX@
1025 # Don't bother with -lfl, we define our own yywrap()s anyway.
1026 # FLEX_LIB              = 
1027 #WAS:FLEX_LIB           = @LEXLIB@
1028
1029 #-----------------------------------------------------------------------------
1030 # Other standard (ha!) Unix utilities
1031
1032 AR                      = @ArCmd@
1033 ArSupportsInput         = @ArSupportsInput@
1034 # Yuckage: for ghc/utils/parallel -- todo: nuke this dependency!!
1035 BASH                    = /usr/local/bin/bash
1036
1037 CONTEXT_DIFF            = @ContextDiffCmd@
1038 CP                      = cp
1039 CPP                     = @CPP@ @CPPFLAGS@
1040 CTAGS                   = $(ETAGS)
1041 #
1042 # RAWCPP_FLAGS are the flags to give to cpp (viz, gcc -E) to persuade it to
1043 # behave plausibly on Haskell sources.
1044 #
1045 RAWCPP_FLAGS            = -undef -traditional
1046 FIND                    = @FindCmd@
1047 SORT                    = @SortCmd@
1048 INSTALL                 = @INSTALL@
1049 #
1050 # Sigh - the autoconf macro for INSTALL will subst a relative path to the fallback
1051 # install-sh script (if chosen). This not terribly useful to us, so we convert
1052 # it into an abs. path.
1053
1054 INSTALL                 := $(subst .././install-sh,$(FPTOOLS_TOP_ABS)/install-sh,$(INSTALL))
1055 LATEX                   = latex
1056 HEVEA                   = hevea
1057 HACHA                   = hacha
1058 LN_S                    = @LN_S@
1059 MANMACROS               = -man
1060 MSMACROS                = -ms
1061 MV                      = mv
1062 NROFF                   = nroff
1063 PERL                    = @PerlCmd@
1064 PYTHON                  = @PythonCmd@
1065 PIC                     = pic
1066 PREPROCESSCMD           = $(CC) -E
1067 RANLIB                  = @RANLIB@
1068 RM                      = rm -f
1069 SED                     = @SedCmd@
1070 SHELL                   = /bin/sh
1071
1072 LD                      = @LdCmd@
1073
1074 # Some ld's support the -x flag and some don't, so the configure
1075 # script detects which we have and sets LdXFlag to "-x" or ""
1076 # respectively.
1077 LD_X                    = @LdXFlag@
1078
1079 # GNU ld supports input via a linker script, which is useful to avoid
1080 # overflowing command-line length limits.
1081 LdIsGNULd               = @LdIsGNULd@
1082
1083 #
1084 # In emergency situations, REAL_SHELL is used to perform shell commands
1085 # from within the ghc driver script, by scribbling the command line to
1086 # a temp file and then having $(REAL_SHELL) execute it. 
1087 #
1088 # The reason for having to do this is that overly long command lines
1089 # cause unnecessary trouble with some shells (e.g., /bin/sh on Solaris
1090 # 2.5.1), which is why this backdoor is provided. The situation of overly
1091 # long command lines is either encountered while doing `make boot' in compiler/, 
1092 # or when linking the compiler binary (`hsc'). 
1093 #
1094 # We do not use SHELL to execute long commands, as `make' will more than likely
1095 # override whatever setting you have in your environment while executing. 
1096
1097 # By default, REAL_SHELL is set equal to SHELL, which is not really a smart move
1098 # as it is SHELL that will show up the bogosity in the first place, but setting
1099 # it to anything else isn't really portable.
1100 #
1101 #  ====> If long command lines cause you trouble, invoke `ghc' (via `make' or otherwise)
1102 # with REAL_SHELL set to something else than /bin/sh, for instance, your favourite
1103 # command shell.
1104 #
1105 REAL_SHELL=$(SHELL)
1106 SIZE                    = size
1107 STRIP                   = strip
1108 TAR                     = @TarCmd@
1109 ZIP                     = zip
1110
1111 HSCOLOUR = @HSCOLOUR@
1112
1113 #
1114 # This is special to literate/, ToDo: add literate-specific
1115 # configure setup to literate/.
1116 #
1117 TBL                     = tbl
1118 TEX                     = tex
1119 TGRIND                  = tgrind
1120 TGRIND_HELPER           = /usr/local/lib/tgrind/tfontedpr # XXX
1121 TIB                     = tib
1122
1123 TIME                    = @TimeCmd@
1124 TROFF                   = troff
1125 UNAME                   = uname
1126
1127 # GTK+
1128 GTK_CONFIG = @GTK_CONFIG@
1129
1130 # Set this if you want to use Inno Setup to build a Windows installer
1131 # when you make a bindist
1132 ISCC                    =
1133
1134 #-----------------------------------------------------------------------------
1135 # DocBook XML stuff
1136
1137 XSLTPROC                = @XsltprocCmd@
1138 XMLLINT                 = @XmllintCmd@
1139 FOP                     = @FopCmd@
1140 XMLTEX                  = @XmltexCmd@
1141 PDFXMLTEX               = @PdfxmltexCmd@
1142 DVIPS                   = @DvipsCmd@
1143
1144 DIR_DOCBOOK_XSL         = @DIR_DOCBOOK_XSL@
1145
1146 XSLTPROC_LABEL_OPTS     = --stringparam toc.section.depth 3 \
1147                           --stringparam section.autolabel 1 \
1148                           --stringparam section.label.includes.component.label 1
1149
1150 #-----------------------------------------------------------------------------
1151 #               FPtools support software
1152
1153 BLD_DLL                 = dllwrap
1154
1155 #
1156 # .NET support software
1157 #
1158 ILX2IL                  = ilx2il
1159 ILASM                   = ilasm
1160
1161 #
1162 # ghc-pkg
1163 #
1164 GHC_PKG                 = @GhcPkgCmd@
1165
1166 #
1167 # GreenCard
1168 #
1169 GREENCARD               = @GreenCardCmd@
1170 GREENCARD_VERSION       = @GreenCardVersion@            
1171
1172 #
1173 # Happy
1174 #
1175 HAPPY                   = @HappyCmd@
1176 HAPPY_VERSION           = @HappyVersion@                
1177 #
1178 # Options to pass to Happy when we're going to compile the output with GHC
1179 #
1180 GHC_HAPPY_OPTS          = -agc --strict
1181
1182 # Temp. to work around performance problems in the HEAD around 8/12/2003,
1183 # A Happy compiled with this compiler needs more stack.
1184 SRC_HAPPY_OPTS          = +RTS -K2m -RTS
1185
1186 #
1187 # Alex
1188 #
1189 ALEX                    = @AlexCmd@
1190 ALEX_VERSION            = @AlexVersion@         
1191 #
1192 # Options to pass to Happy when we're going to compile the output with GHC
1193 #
1194 GHC_ALEX_OPTS           = -g
1195
1196 #
1197 # Options for compiling in different `ways'. 
1198
1199 # To configure up your own way, have a look at some of the standard ways
1200 # such as profiling, and create your own set of WAY_*_OPTS defs below.
1201 # After having done that, add your way string to WAYS, and after having
1202 # run the configure script, the different projects will add the new way
1203 # to the list of ways they support.
1204 #
1205
1206 #
1207 # Definitions of the different ways:
1208 #   
1209 #   * their name:
1210 #          - tag, e.g., p
1211 #          - description, e.g., profiling
1212 #   * what they mean to the driver:
1213 #          - WAY_p_HC_OPTS gives the list of command-line options
1214 #            to the driver.
1215 #
1216
1217 #
1218 # The ways currently defined.
1219 #
1220 ALL_WAYS=p t s mp mg a b c d e f g h i j k l m n o A B
1221 USER_WAYS=a b c d e f g h j k l m n o A B
1222
1223 #
1224 # The following ways currently have treated specially, p t mg,
1225 # as the driver script treats these guys specially and needs to carefully be told
1226 # about the options for these. Hence, we hide the required command line options
1227 # for these in the driver, as this is the only place they are needed.
1228
1229 # If you want to add to these default options, fill in the variables below:
1230
1231 # Way 'i':
1232 WAY_i_NAME=ILX
1233 WAY_i_HC_OPTS= -filx -fruntime-types
1234
1235 # Way 'p':
1236 WAY_p_NAME=profiling
1237 WAY_p_HC_OPTS= -prof
1238
1239 # Way 't':
1240 WAY_t_NAME=ticky-ticky profiling
1241 WAY_t_HC_OPTS= -ticky
1242
1243 # Way `mp': 
1244 WAY_mp_NAME=parallel
1245 WAY_mp_HC_OPTS=-parallel
1246
1247 # Way `mg': 
1248 WAY_mg_NAME=GranSim
1249 WAY_mg_HC_OPTS=-gransim
1250
1251 #
1252 # These ways apply to the RTS only:
1253 #
1254
1255 # Way 'thr':
1256 WAY_thr_NAME=threaded
1257 WAY_thr_HC_OPTS=-optc-DTHREADED_RTS
1258
1259 # Way 'thr_p':
1260 WAY_thr_p_NAME=threaded profiled
1261 WAY_thr_p_HC_OPTS=-optc-DTHREADED_RTS -prof
1262
1263 # Way 'debug':
1264 WAY_debug_NAME=debug
1265 WAY_debug_HC_OPTS=-optc-DDEBUG
1266
1267 # Way 'debug_p':
1268 WAY_debug_p_NAME=debug profiled
1269 WAY_debug_p_HC_OPTS=-optc-DDEBUG -prof
1270
1271 # Way 'debug_t':
1272 WAY_debug_t_NAME=debug ticky-ticky profiling
1273 WAY_debug_t_HC_OPTS= -ticky -optc-DDEBUG
1274
1275 # Way 'thr_debug':
1276 WAY_thr_debug_NAME=threaded
1277 WAY_thr_debug_HC_OPTS=-optc-DTHREADED_RTS -optc-DDEBUG
1278
1279 # Way 'thr_debug_p':
1280 WAY_thr_debug_p_NAME=threaded debug profiling
1281 WAY_thr_debug_p_HC_OPTS=-optc-DTHREADED_RTS -optc-DDEBUG -prof
1282
1283 # Way 'dyn': build dynamic shared libraries
1284 WAY_dyn_NAME=dyn
1285 WAY_dyn_HC_OPTS=-fPIC -dynamic
1286 WAY_dyn_LIB_TARGET=libHSrts-gcc661.so
1287
1288 # Way 'thr_dyn':
1289 WAY_thr_dyn_NAME=thr_dyn
1290 WAY_thr_dyn_HC_OPTS=-fPIC -dynamic -optc-DTHREADED_RTS
1291
1292 # Way 'thr_debug_dyn':
1293 WAY_thr_debug_dyn_NAME=thr_dyn
1294 WAY_thr_debug_dyn_HC_OPTS=-fPIC -dynamic -optc-DTHREADED_RTS -optc-DDEBUG
1295
1296 # Way 'debug_dyn':
1297 WAY_debug_dyn_NAME=thr_dyn
1298 WAY_debug_dyn_HC_OPTS=-fPIC -dynamic -optc-DDEBUG
1299
1300 #
1301 # Add user-way configurations here:
1302 #
1303 WAY_A_NAME=
1304 WAY_A_HC_OPTS=
1305
1306 WAY_B_NAME=
1307 WAY_B_HC_OPTS=
1308
1309 WAY_a_NAME=
1310 WAY_a_HC_OPTS=
1311
1312 WAY_b_NAME=
1313 WAY_b_HC_OPTS=
1314
1315 WAY_c_NAME=
1316 WAY_c_HC_OPTS=
1317
1318 WAY_d_NAME=
1319 WAY_d_HC_OPTS=
1320
1321 WAY_e_NAME=
1322 WAY_e_HC_OPTS=
1323
1324 WAY_f_NAME=
1325 WAY_f_HC_OPTS=
1326
1327 WAY_g_NAME=
1328 WAY_g_HC_OPTS=
1329
1330 WAY_h_NAME=
1331 WAY_h_HC_OPTS=
1332
1333 WAY_j_NAME=
1334 WAY_j_HC_OPTS=
1335
1336 WAY_k_NAME=
1337 WAY_k_HC_OPTS=
1338
1339 WAY_l_NAME=
1340 WAY_l_HC_OPTS=
1341
1342 WAY_m_NAME=
1343 WAY_m_HC_OPTS=
1344
1345 WAY_n_NAME=
1346 WAY_n_HC_OPTS=
1347
1348 WAY_o_NAME=
1349 WAY_o_HC_OPTS=
1350
1351 ################################################################################
1352 #
1353 #               31-bit-Int Core files
1354 #
1355 ################################################################################
1356
1357
1358 # It is possible to configure the compiler and prelude to support 31-bit
1359 # integers, suitable for a back-end and RTS using a tag bit on a 32-bit
1360 # architecture.  Currently the only useful output from this option is external Core
1361 # files.  The following additions to your build.mk will produce the
1362 # 31-bit core output.  Note that this is *not* just a library "way"; the
1363 # compiler must be built a special way too.
1364
1365 # GhcCppOpts +=-DWORD_SIZE_IN_BITS=31
1366 # GhcLibHcOpts +=-fext-core -fno-code -DWORD_SIZE_IN_BITS=31
1367 # GhcLibCppOpts += -DWORD_SIZE_IN_BITS=31
1368 # SplitObjs=NO
1369
1370 ################################################################################
1371 #
1372 #    Library configure arguments
1373 #
1374 ################################################################################
1375
1376 CONFIGURE_ARGS = @CONFIGURE_ARGS@
1377
1378 ################################################################################
1379 #
1380 #    Bindist testing directory
1381 #
1382 ################################################################################
1383
1384 ifeq "$(Windows)" "YES"
1385 BIN_DIST_INST_SUBDIR = "install dir"
1386 else
1387 # I very much doubt that paths with spaces will work on Unix
1388 BIN_DIST_INST_SUBDIR = installed
1389 endif
1390
1391 BIN_DIST_INST_DIR = $(FPTOOLS_TOP_ABS)/bindisttest/$(BIN_DIST_INST_SUBDIR)
1392