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