[project @ 1999-12-21 13:01:59 by simonmar]
[ghc-hetmet.git] / mk / config.mk.in
1 #
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. (cygwin32 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 #
101 # What parts to build: An fptools build tree does not have to be built
102 # all in one go. By setting the list of ProjectsToBuild in build.mk you can
103 # control which projects are built.
104 #
105 # Caution: the projects are built in the order given here, so if some
106 # projects use others you must list them in the correct order.
107 #
108 # Generally:    * glafp-utils should be first
109 #               * happy next
110 #               * ghc next
111 #               then it's up to you
112
113 ProjectsToBuild   = glafp-utils ghc hslibs
114 #
115 # Make a distinction between building and installing
116 #
117 ProjectsToInstall = glafp-utils ghc hslibs
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 # Specify the Haskell compiler to be used to compile the compiler itself
140 #
141 #   WithGhcHc      Path name of the compiler to use
142 #
143 #   WithGhcHcType  What "type" of compiler is being used
144 #                  Valid options:
145 #                            HC_CHALMERS_HBC
146 #                            HC_GLASGOW_GHC
147 #                            HC_ROJEMO_NHC
148 #                            HC_UNSPECIFIED
149
150 WithGhcHc = @WithHc@
151
152 # Variable which is set to the version number of the $(WithGhcHc) we're using.
153 # Not currently used, but might come in handy sometime soon.
154 #WithGhcHcVersion = $(shell echo `if ( $(WithGhcHc) --version 2>/dev/null >/dev/null ) then $(WithGhcHc) --version 2>&1 | @SedCmd@ -e 's/^.*version [^0-9]*\([.0-9]*\).*/\1/;s/\.//'; else echo unknown; fi; ` )
155
156 # Extra ways in which to build the compiler (for example, you might want to
157 # build a profiled compiler so you can see where it spends its time)
158 GhcCompilerWays=
159
160 # Extra option flags to pass to the compiler that compiles the compiler
161 # (Ones that are essential are wired into ghc/compiler/Makefile)
162 # Typical ones:
163 #       -H25m           allocate a bigger heap (might speed up compilation)
164 #
165 #       -O              compile an optimised compiler
166 #
167 #       -DDEBUG         include consistency/assertion checks in the compiled compiler
168 #
169 #       -dcore-lint     check the types after every pass of the compiler;
170 #                       a pretty strong internal check
171 GhcHcOpts=
172
173 # GhcWithHscBuiltViaC - build GHC compiler proper (\`hsc') from .hc files?
174 GhcWithHscBuiltViaC=@BootingFromHc@
175
176 # Build a registerised version of hsc and runtime
177 # (unregisterised used for Hugs at the moment)
178 GhcWithRegisterised=YES
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 GhcWithNativeCodeGen=$(shell if (test x$(findstring $(HostArch_CPP),i386 alpha sparc) = x); then echo NO; else echo YES; fi)
186
187 #
188 # Building various ways?
189 # (right now, empty if not).
190 BuildingParallel=$(subst mp,YES,$(filter mp,$(WAYS)))
191 BuildingGranSim=$(subst mg,YES,$(filter mg,$(WAYS)))
192
193 # Include compiler support for letting the compiler (optionally) report
194 # your compilation to a central server for generation of fun stats.
195 #
196 GhcReportCompiles=NO
197
198 #------------------------------------------------------------------------------
199 # Options for GHC's Prelude
200
201 # What extra ways to build the libraries in
202 # In addition to the normal sequential way, the default is to also build
203 # profiled prelude libraries.
204 # When booting from .hc files, turn this off.
205 ifeq "$(GhcWithHscBuiltViaC)" "YES"
206 GhcLibWays=
207 else
208 GhcLibWays=p
209 endif
210
211 # Option flags to pass to GHC when it's compiling prelude modules
212 # Typically these are things like -O or -dcore-lint
213 # The ones that are *essential* are wired into ghc/lib/Makefile
214 #
215 #       -O is pretty desirable, otherwise no inlining of prelude
216 #               things (incl "+") happens when compiling with this compiler
217
218 ifeq "$(GhcWithHscBuiltViaC)" "YES"
219 GhcLibHcOpts=-O
220 else
221 GhcLibHcOpts=-O -split-objs -odir $*
222 endif
223
224 # Win32 only: Enable the RTS and libraries to be built as DLLs
225 #
226 EnableWin32DLLs=@EnableWin32DLLs@
227
228 # Strip local symbols from libraries?  This can make the libraries smaller,
229 # but makes debugging somewhat more difficult.  Doesn't work with all ld's.
230 #
231 StripLibraries=NO
232
233 # ----------------------------------------------------------------------------
234 # Options for GHC's RTS
235
236 # This is a good way to set things like -optc-g and -optc-DDEBUG for the RTS.
237 # GhcRtsHcOpts is used when compiling .hc files and .c files.
238 # GhcRtsCcOpts is used when compiling .c  files only.
239
240 # For a debugging RTS:
241 # GhcRtsHcOpts = -optc-DDEBUG
242 # GhcRtsCcOpts = -optc-g
243
244 # For an optimised RTS:
245 GhcRtsHcOpts=-O2
246 GhcRtsCcOpts=-O2 -optc-fomit-frame-pointer
247
248 ################################################################################
249 #
250 #               hslibs project
251 #
252 ################################################################################
253
254 # Build HsLibs for which compiler?  
255
256 # If $(HsLibsFor) == hugs or ghc, we assume we're building for the
257 # compiler/interpreter in the same source tree.
258
259 # HsLibsFor = ghc | hugs | nhc | hbc
260 HsLibsFor       = ghc
261
262 # hslibs for GHC also uses the following variables (defined above):
263 #   GhcLibWays, GhcLibHcOpts, EnableWin32DLLs, StripLibraries
264
265 # Build the Haskell Readline bindings?
266 #
267 GhcLibsWithReadline=NO
268 #
269 # Include path to readline.h
270 # (no path == in standard include path)
271 #
272 ReadlineIncludePath=
273 HaveLibReadline=@HaveLibReadline@
274
275 ################################################################################
276 #
277 #               happy project
278 #
279 #       Happy specific options
280 #
281 ################################################################################
282
283 # The compiler you'd like to use to compile Happy
284 WithHappyHc = @WithHc@
285
286 # HappyHcOpts gives the flags to pass to the Haskell compiler used
287 #             to compile the Happy sources with.
288 #
289 HappyHcOpts = -O
290
291 ################################################################################
292 #
293 #               haggis project
294 #
295 #       Haggis specific options
296 #
297 ################################################################################
298
299 ################################################################################
300 #
301 #               green-card project
302 #
303 #       Green-card specific options
304 #
305 ################################################################################
306
307 ################################################################################
308 #
309 #               nofib project
310 #
311 #       nofib specific options
312 #
313 ################################################################################
314
315 WithNofibHc = $(GHC_INPLACE)
316
317 # NoFibSubDirs controls which set of tests should be run
318 # You can run one or more of
319 #       imaginary 
320 #       spectral
321 #       real
322 #       parallel
323 #       PRIVATE
324 #       PENDING
325 #       UNUSED
326 NoFibSubDirs = imaginary spectral real
327
328 # The different ways to build nofib. Default is just to mirror
329 # what is done for the ghc prelude libraries.
330 #
331 NoFibWays = $(GhcLibWays)
332
333 # Haskell compiler options for nofib
334 NoFibHcOpts = -O
335
336 # ==============================================================================
337 #
338 #                       END OF PROJECT-SPECIFIC STUFF
339 #
340 #               Now come the generic configuration options
341 #
342 # ==============================================================================
343
344 ################################################################################
345 #
346 #               Paths (see paths.mk)
347 #
348 ################################################################################
349
350 TMPDIR                  = /tmp
351
352 # FPTOOLS_TOP: the top of the fptools hierarchy, absolute path.
353
354 FPTOOLS_TOP_ABS         = @hardtop@
355
356 #
357 # Installation directories, we don't use half of these,
358 # but since the configure script has them on offer while
359 # passing through, we might as well set them.
360
361 prefix                  = @prefix@
362 exec_prefix             = @exec_prefix@
363 bindir                  = @bindir@
364 #UNUSED, see below: libexecdir              = @libexecdir@
365 datadir                 = @datadir@
366 #sysconfdir              = @datadir@
367 #sharedstatedir          = @sharedstatedir@
368 #localstatedir           = @localstatedir@
369 libdir                  = @libdir@
370 infodir                 = @infodir@
371 includedir              = @includedir@
372 oldincludedir           = @oldincludedir@
373 mandir                  = @mandir@
374 #UNUSED:srcdir          = @srcdir@
375
376
377 # Default values for most of the above are only set if
378 # they weren't configured to anything in particular
379 # via the configure script. (i.e., we make no assumption
380 # that the autoconf-generated script will assign defaults
381 # to all of the above).
382 #
383 ifeq "$(strip $(exec_prefix))" ""
384 exec_prefix             = $(prefix)
385 endif
386 ifeq "$(strip $(bindir))" ""
387 bindir                  = $(exec_prefix)/bin
388 endif
389
390 #
391 # NOTE: by intention, libexecdir and libdir point to 
392 # the same place.
393 #  => Only way to override this is to set libexecdir= on the command line.
394 #     (NOTE: configure script setting is ignored).
395 libexecdir              = $(libdir)
396
397 ifeq "$(strip $(datadir))" ""
398 datadir         = $(prefix)/share
399 endif
400 ifeq "$(strip $(libdir))" ""
401 libdir          = $(exec_prefix)/lib
402 endif
403 ifeq "$(strip $(infodir))" ""
404 infodir         = $(prefix)/info
405 endif
406 ifeq "$(strip $(includedir))" ""
407 includedir      = $(prefix)/include
408 endif
409 ifeq "$(strip $(oldincludedir))" ""
410 oldincludedir   = /usr/include
411 endif
412 ifeq "$(strip $(mandir))" ""
413 mandir          = $(prefix)/man
414 endif
415  
416
417 ################################################################################
418 #
419 #               Utilities programs: flags
420 #
421 ################################################################################
422
423 # If you want to give any standard flags to pretty much any utility
424 # (see utils.mk for a complete list), by adding a line here
425 #
426 #       SRC_P_OPTS += ...
427 #
428 # where P is the utility. For example, to add -O to all Haskell
429 # compilations, 
430 #
431 #       SRC_HC_OPTS += -O
432
433
434 ################################################################################
435 #
436 #               Utilities programs: where to find them
437 #
438 ################################################################################
439
440 #-----------------------------------------------------------------------------
441 # FPtools Utility locations
442
443 # By default, the various utils needed to be build ghc and chums
444 # is set up to point to the utils/ directory. Define here the
445 # path prefix for the utilities. Notice that it's a prefix with
446 # a trailing slash, so that it can be concatenated directly on
447 # front of a program name; if it's not set then we just look
448 # along the shell's $(PATH)
449 #
450 # If instead you want to use installed or your own versions of these,
451 # override the various *_PREFIX in build.mk, i.e., having the following
452 # in build.mk:
453 #
454 #   MKDEPENDC_PREFIX=
455 #
456 # will force `make' to rummage around in your PATH to find `mkdependC' (not
457 # sure it would need it in the first place, but still).
458 #
459 GLAFP_UTILS             = $(FPTOOLS_TOP)/glafp-utils
460
461 SCRIPT_PREFIX           = $(GLAFP_UTILS)/scripts/
462 MKDEPENDC_PREFIX        = $(GLAFP_UTILS)/mkdependC/
463 LTX_PREFIX              = $(GLAFP_UTILS)/ltx/
464 RUNTEST_PREFIX          = $(GLAFP_UTILS)/runstdtest/
465 VERBATIM_PREFIX         = $(GLAFP_UTILS)/verbatim/
466 SGMLVERB_PREFIX         = $(GLAFP_UTILS)/sgmlverb/
467 ETAGS_PREFIX            = $(GLAFP_UTILS)/etags/
468 MSUB_PREFIX             = $(GLAFP_UTILS)/msub/
469 LNDIR_PREFIX            = $(GLAFP_UTILS)/lndir/
470 MKDIRHIER_PREFIX        = $(GLAFP_UTILS)/mkdirhier/
471
472 # Still used?
473 LITERATE                = $(FPTOOLS_TOP)/literate
474
475 LITERATE_PREFIX         = $(FPTOOLS_TOP)/literate/
476 INFO_PREFIX             = $(FPTOOLS_TOP)/literate/info-utils/
477 TEXI2HTML_PREFIX        = $(LITERATE_PREFIX)texi2html/
478
479 HAPPY_PREFIX            = $(FPTOOLS_TOP)/happy/src/
480 GREENCARD_PREFIX        = $(FPTOOLS_TOP)/green-card/src/
481
482 UNLIT_PREFIX            = $(FPTOOLS_TOP)/ghc/utils/unlit/
483 UGEN_PREFIX             = $(FPTOOLS_TOP)/ghc/utils/ugen/
484 STAT2RESID_PREFIX       = $(FPTOOLS_TOP)/ghc/utils/stat2resid/
485 HP2PS_PREFIX            = $(FPTOOLS_TOP)/ghc/utils/hp2ps/
486 HSCPP_PREFIX            = $(FPTOOLS_TOP)/ghc/utils/hscpp/
487 HSTAGS_PREFIX           = $(FPTOOLS_TOP)/ghc/utils/hstags/
488
489
490 #-----------------------------------------------------------------------------
491 # Haskell compilers and mkdependHS
492
493 # $(GHC), $(HBC) and $(NHC) point to installed versions of the relevant
494 # compilers, if available.
495 #
496 # $(HC) is a generic Haskell 98 compiler, set to $(GHC) by default.
497 # $(MKDEPENDHS) is the Haskell dependency generator (ghc -M).
498
499 GHC             = @GHC@
500 HBC             = @HBC@
501 NHC             = @NHC@
502
503 HC              = @WithHc@
504 MKDEPENDHS      = $(GHC)
505
506 # Sometimes we want to invoke ghc from the build tree in different
507 # projects (eg. it's handy to have a nofib & a ghc build in the same
508 # tree).  We can refer to "this ghc" as $(GHC_INPLACE):
509
510 GHC_INPLACE     = $(FPTOOLS_TOP)/ghc/driver/ghc-inplace
511
512 #-----------------------------------------------------------------------------
513 # C compiler
514 #
515 #
516 HaveGcc         = @HaveGcc@
517 UseGcc          = YES
518 WhatGccIsCalled = @WhatGccIsCalled@
519 ifeq "$(strip $(HaveGcc))" "YES"
520 ifneq "$(strip $(UseGcc))"  "YES"
521   CC    = cc
522 else
523   CC    = $(WhatGccIsCalled)
524 endif
525 endif
526
527 #-----------------------------------------------------------------------------
528 # GMP Library (version 2.0.x or above)
529 #
530 HaveLibGmp      = @HaveLibGmp@
531 LibGmp          = @LibGmp@
532
533 #-----------------------------------------------------------------------------
534 # Flex
535
536 FLEX                    = @LEX@
537 # Don't bother with -lfl, we define our own yywrap()s anyway.
538 FLEX_LIB                = 
539 #WAS:FLEX_LIB           = @LEXLIB@
540
541 #-----------------------------------------------------------------------------
542 # Other standard (ha!) Unix utilities
543
544 AR                      = @ArCmd@
545 # Yuckage: for ghc/utils/parallel -- todo: nuke this dependency!!
546 BASH                    = /usr/local/bin/bash
547 #
548 # Could be either gzip or compress
549 #
550 COMPRESS                = @CompressCmd@
551 COMPRESS_SUFFIX         = @CompressSuffix@
552
553 CONTEXT_DIFF            = @ContextDiffCmd@
554 CP                      = cp
555 CPP                     = @CPP@
556 CTAGS                   = $(ETAGS)
557 RAWCPP                  = $(CPP) -undef -traditional
558 INSTALL                 = @INSTALL@
559 #
560 # Sigh - the autoconf macro for INSTALL will subst a relative path to the fallback
561 # install-sh script (if chosen). This not terribly useful to us, so we convert
562 # it into an abs. path.
563
564 INSTALL                 := $(subst .././install-sh,$(FPTOOLS_TOP_ABS)/install-sh,$(INSTALL))
565 LATEX                   = latex
566 LN_S                    = @LN_S@
567 MANMACROS               = -man
568 MSMACROS                = -ms
569 MV                      = mv
570 NROFF                   = nroff
571 PERL                    = @PerlCmd@
572 PIC                     = pic
573 PREPROCESSCMD           = $(CC) -E
574 PRINTER                 = lpr
575 RANLIB                  = @RANLIB@
576 RM                      = rm -f
577 SED                     = @SedCmd@
578 SHELL                   = /bin/sh
579 #
580 # In emergency situations, REAL_SHELL is used to perform shell commands
581 # from within the ghc driver script, by scribbling the command line to
582 # a temp file and then having $(REAL_SHELL) execute it. 
583 #
584 # The reason for having to do this is that overly long command lines
585 # cause unnecessary trouble with some shells (e.g., /bin/sh on Solaris
586 # 2.5.1), which is why this backdoor is provided. The situation of overly
587 # long command lines is either encountered while doing `make boot' in ghc/compiler, 
588 # or when linking the compiler binary (`hsc'). 
589 #
590 # We do not use SHELL to execute long commands, as `make' will more than likely
591 # override whatever setting you have in your environment while executing. 
592
593 # By default, REAL_SHELL is set equal SHELL, which is not really a smart move
594 # as it is SHELL that will show up the bogosity in the first place, but setting
595 # it to anything else isn't really portable.
596 #
597 #  ====> If long command lines cause you trouble, invoke `ghc' (via `make' or otherwise)
598 # with REAL_SHELL set to something else than /bin/sh, for instance, your favourite
599 # command shell.
600 #
601 REAL_SHELL=$(SHELL)
602 SIZE                    = size
603 STRIP                   = strip
604 TAR                     = @TarCmd@
605 ZIP                     = zip
606
607 #
608 # Under cygwin32, we have to deal with .exe suffixes
609 #
610 EXE_SUFFIX=@ExeSuffix@
611
612 #
613 # This is special to literate/, ToDo: add literate-specific
614 # configure setup to literate/.
615 #
616 TBL                     = tbl
617 TEX                     = tex
618 TGRIND                  = tgrind
619 TGRIND_HELPER           = /usr/local/lib/tgrind/tfontedpr # XXX
620 TIB                     = tib
621
622 TIME                    = @TimeCmd@
623 TROFF                   = troff
624 UNAME                   = uname
625 YACC                    = @YaccCmd@
626
627 #-----------------------------------------------------------------------------
628 # SGML stuff (currently not configured - we assume you have it)
629
630 SGML2LATEX              = sgml2latex
631 SGML2HTML               = sgml2html
632 SGML2INFO               = sgml2info
633 SGML2TXT                = sgml2txt
634
635 #-----------------------------------------------------------------------------
636 #               FPtools support software
637
638 # Stuff from fptools/glafp-utils
639 MKDEPENDC               = $(MKDEPENDC_PREFIX)mkdependC
640 LTX                     = $(LTX_PREFIX)ltx
641 MKDIRHIER               = $(MKDIRHIER_PREFIX)mkdirhier
642 LNDIR                   = $(LNDIR_PREFIX)lndir
643 MSUB                    = $(MSUB_PREFIX)msub
644 ETAGS                   = $(ETAGS_PREFIX)etags
645 VERBATIM                = $(VERBATIM_PREFIX)verbatim
646 SGMLVERB                = $(SGMLVERB_PREFIX)sgmlverb
647 SGML2LATEX              = sgml2latex
648 RUNTEST                 = $(RUNTEST_PREFIX)runstdtest
649 HAPPY                   = @HappyCmd@
650 HAPPY_VERSION           = @HappyVersion@                
651 LX                      = @LxCmd@
652 GREENCARD               = $(FPTOOLS_TOP)/green-card/src/green-card
653
654 BLD_DLL                 = dllwrap
655
656 #
657 # Stuff from fptools/literate
658 #
659 INFO                    = $(UTIL_PREFIX)info
660 MAKEINFO                = $(INFO_PREFIX)makeinfo
661 POSTMAKEINFO            = $(INFO_PREFIX)postmakeinfo
662 LIT2PGM                 = $(LITERATE_PREFIX)lit2pgm
663 LIT2TEXI                = $(LITERATE_PREFIX)lit2texi
664 LIT2HTML                = $(LITERATE_PREFIX)lit2html
665 LIT2LATEX               = $(LITERATE_PREFIX)lit2latex
666 MKDEPENDLIT             = $(LITERATE_PREFIX)mkdependlit
667 LIT2CHANGELOG           = $(LITERATE_PREFIX)lit2changelog
668 LIT2TEXT                = $(LITERATE_PREFIX)lit2text
669 TEXI2HTML               = $(TEXI2HTML_PREFIX)texi2html
670
671 #
672 # Stuff from fptools/ghc/utils
673 #
674 UNLIT                   = $(UNLIT_PREFIX)unlit
675 UGEN                    = $(UGEN_PREFIX)ugen
676 STAT2RESID              = $(STAT2RESID_PREFIX)stat2resid
677 HP2PS                   = $(HP2PS_PREFIX)hp2ps
678 HSCPP                   = $(HSCPP_PREFIX)hscpp
679 HSTAGS                  = $(HSTAGS_PREFIX)hstags
680
681 #
682 # Options for the compiling different `ways'. Various projects within
683 # the glorious fptools tree support building in various user-configured
684 # ways. For instance, you could set up one `way' such that the prelude
685 # libraries all were built with the option -ffoldr-build-on.
686
687 # To configure up your own way, have a look at some of the standard ways
688 # such as profiling, and create your own set of WAY_*_OPTS defs below.
689 # After having done that, add your way string to WAYS, and after having
690 # run the configure script, the different projects will add the new way
691 # to the list of ways they support.
692 #
693
694 #
695 # IMPORTANT! The WAYS variable configures the different `ways'
696 # you want to build a project (or maybe just parts of it, as is
697 # the case for ghc/). This variable is intended set inside the
698 # project mk setup, enforcing a global fptools WAYS is a bit too
699 # much (do you *really* want to build glafp-utils the profiled-concurrent 
700 # way?)
701 #
702
703 #
704 # Definitions of the different ways:
705 #   
706 #   * their name:
707 #          - tag, e.g., p
708 #          - description, e.g., profiling
709 #   * what they mean to the driver:
710 #          - WAY_p_HC_OPTS gives the list of command-line options
711 #            to the driver.
712 #
713
714 #
715 # The ways currently defined.
716 #
717 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
718
719 #
720 # The following ways currently have treated specially, p u t mg,
721 # as the driver script treats these guys specially and needs to carefully be told
722 # about the options for these. Hence, we hide the required command line options
723 # for these in the ghc/driver, as this is the only place they are needed.
724
725 # If you want to add to these default options, fill in the variables below:
726
727 # Way 'p':
728 WAY_p_NAME=profiling
729 WAY_p_HC_OPTS= -prof
730
731 # Way 't':
732 WAY_t_NAME=ticky-ticky profiling
733 WAY_t_HC_OPTS= -ticky
734
735 # Way `u':
736 WAY_u_NAME=unregisterized (using portable C only)
737 WAY_u_HC_OPTS=-unreg
738
739 # Way `s':
740 WAY_s_NAME=threads (for SMP)
741 WAY_s_HC_OPTS=-smp
742
743 # Way `mp': 
744 WAY_mp_NAME=parallel
745 WAY_mp_HC_OPTS=-parallel
746
747 # Way `mg': 
748 WAY_mg_NAME=GranSim
749 WAY_mg_HC_OPTS=-gransim
750
751 # Way `dll': 
752 WAY_dll_NAME=Win32 DLLs
753 WAY_dll_HC_OPTS=
754
755 #
756 # Add user-way configurations here:
757 #
758 WAY_A_NAME=
759 WAY_A_HC_OPTS=
760
761 WAY_B_NAME=
762 WAY_B_HC_OPTS=
763
764 WAY_a_NAME=
765 WAY_a_HC_OPTS=
766
767 WAY_b_NAME=
768 WAY_b_HC_OPTS=
769
770 WAY_c_NAME=
771 WAY_c_HC_OPTS=
772
773 WAY_d_NAME=
774 WAY_d_HC_OPTS=
775
776 WAY_e_NAME=
777 WAY_e_HC_OPTS=
778
779 WAY_f_NAME=
780 WAY_f_HC_OPTS=
781
782 WAY_g_NAME=
783 WAY_g_HC_OPTS=
784
785 WAY_h_NAME=
786 WAY_h_HC_OPTS=
787
788 WAY_i_NAME=
789 WAY_i_HC_OPTS=
790
791 WAY_j_NAME=
792 WAY_j_HC_OPTS=
793
794 WAY_k_NAME=
795 WAY_k_HC_OPTS=
796
797 WAY_l_NAME=
798 WAY_l_HC_OPTS=
799
800 WAY_m_NAME=
801 WAY_m_HC_OPTS=
802
803 WAY_n_NAME=
804 WAY_n_HC_OPTS=
805
806 WAY_o_NAME=
807 WAY_o_HC_OPTS=