[project @ 2001-07-04 16:29:35 by rrt]
[ghc-hetmet.git] / mk / target.mk
1 #################################################################################
2 #
3 #                       target.mk
4 #
5 #               Standard targets for fptools
6 #
7 #################################################################################
8
9 #
10 # This file contain three groups of target rules:
11 #
12 # 1.  FPtools targets
13 #       depend*
14 #       runtests*
15 #
16 # 2.  GNU standard targets
17 #       all*
18 #       install* uninstall installcheck installdirs
19 #       clean* distclean* mostlyclean* maintainer-clean*
20 #       tags*
21 #       dvi ps (no info) FPTOOLS adds: pdf rtf html
22 #       check
23 #
24 # 3. Some of the above targets have a version that
25 #    recursively invokes that target in sub-directories.
26 #    This relies on the importing Makefile setting SUBDIRS
27 #
28 #    The recursive targets are marked with a * above
29 #
30
31
32
33 #
34
35
36 ##################################################################
37 #
38 #               Recursive stuff
39 #
40 # At the top of the file so that recursive makes happen before
41 # makes in the main directory. This is needed for some targets,
42 # e.g. when building DLLs in hslibs.
43 #
44 ##################################################################
45
46 # Here are the diabolically clever rules that
47
48 # (a) for each "recursive target" <t>
49 #     propagates "make <t>" to directories in SUBDIRS
50 #
51 # (b) when SUBDIRS is empty,
52 #     for each "multi-way-target" <t>
53 #     calls "make way=w <t>" for each w in $(WAYS)
54 #
55 #     This has the effect of making the standard target
56 #     in each of the specified ways (as well as in the normal way
57
58 # Controlling variables
59 #       WAYS    = extra (beyond the normal way) ways to build things in
60 #       SUBDIRS = subdirectories to recurse into
61
62 # No ways, so iterate over the SUBDIRS
63
64 # note about recursively invoking make: we'd like make to drop all the
65 # way back to the top level if it fails in any of the
66 # sub(sub-...)directories.  This is done by setting the -e flag to the
67 # shell during the loop, which causes an immediate failure if any of
68 # the shell commands fail.
69
70 # One exception: if the user gave the -i or -k flag to make in the
71 # first place, we'd like to reverse this behaviour.  So we check for
72 # these flags, and set the -e flag appropriately.  NOTE: watch out for
73 # the --no-print-directory flag which is passed to recursive
74 # invocations of make.
75 #
76 # NOTE: Truly weird use of exit below to stop the for loop dead in
77 # its tracks should any of the sub-makes fail. By my reckoning, 
78 #  "cmd || exit $?" should be equivalent to "cmd"
79
80 ifneq "$(SUBDIRS)" ""
81
82 # we override the boot & all targets in the top level Makefile
83 ifneq "$(NO_ALL_TARGETS)" "YES"
84 ALL_TARGET     = all
85 BOOT_TARGET    = boot
86 INSTALL_TARGET = install
87 endif
88
89 $(ALL_TARGET) docs runtests $(BOOT_TARGET) TAGS clean distclean mostlyclean maintainer-clean $(INSTALL_TARGET) html ps dvi txt::
90         @echo "------------------------------------------------------------------------"
91         @echo "===fptools== Recursively making \`$@' in $(SUBDIRS) ..."
92         @echo "PWD = $(shell pwd)"
93         @echo "------------------------------------------------------------------------"
94 # Don't rely on -e working, instead we check exit return codes from sub-makes.
95         @case '${MFLAGS}' in *-[ik]*) x_on_err=0;; *-r*[ik]*) x_on_err=0;; *) x_on_err=1;; esac; \
96         for i in $(SUBDIRS); do \
97           echo "------------------------------------------------------------------------"; \
98           echo "==fptools== $(MAKE) $@ $(MFLAGS);"; \
99           echo " in $(shell pwd)/$$i"; \
100           echo "------------------------------------------------------------------------"; \
101           $(MAKE) --no-print-directory -C $$i $(MFLAGS) $@; \
102           if [ $$? -eq 0 -o $$x_on_err -eq 0 ] ;  then true; else exit 1; fi; \
103         done
104         @echo "------------------------------------------------------------------------"
105         @echo "===fptools== Finished making \`$@' in $(SUBDIRS) ..."
106         @echo "PWD = $(shell pwd)"
107         @echo "------------------------------------------------------------------------"
108
109 endif
110
111 #
112 # Selectively building subdirectories.
113 #
114 #
115 ifneq "$(SUBDIRS)" ""
116 $(SUBDIRS) ::
117           $(MAKE) -C $@ $(MFLAGS)
118 endif
119
120 ##################################################################
121 #               FPtools standard targets
122 #
123 # depend:
124 #
125 #  The depend target has to cope with a set of files that may have
126 #  different ways of computing their dependencies, i.e., a Haskell
127 #  module's dependencies are computed differently from C files.
128 #
129 # Note that we don't compute dependencies automatically, i.e., have the
130 # .depend file be a target that is dependent on the Haskell+C sources,
131 # and then have the `depend' target depend on `.depend'. The reason for
132 # this is that when GNU make is processing the `include .depend' statement
133 # it records .depend as being a Makefile. Before doing any other processing,
134 # `make' will try to check to see if the Makefiles are up-to-date. And,
135 # surprisingly enough, .depend has a rule for it, so if any of the source
136 # files change, it will be invoked, *regardless* of what target you're making.
137 #
138 # So, for now, the dependencies has to be re-computed manually via `make depend'
139 # whenever a module changes its set of imports. Doing what was outlined above
140 # is only a small optimisation anyway, it would avoid the recomputation of
141 # dependencies if the .depend file was newer than any of the source modules.
142 #
143 .PHONY: depend
144
145 # Compiler produced files that are targets of the source's imports.
146 MKDEPENDHS_OBJ_SUFFICES=o
147
148 depend :: $(MKDEPENDHS_SRCS) $(MKDEPENDC_SRCS)
149         @$(RM) .depend
150         @touch .depend
151 ifneq "$(DOC_SRCS)" ""
152         $(MKDEPENDLIT) -o .depend $(MKDEPENDLIT_OPTS) $(filter %.lit,$(DOC_SRCS))
153 endif
154 ifneq "$(MKDEPENDC_SRCS)" ""
155         $(MKDEPENDC) -f .depend $(MKDEPENDC_OPTS) $(foreach way,$(WAYS),-s $(way)) -- $(CC_OPTS) -- $(MKDEPENDC_SRCS) 
156 endif
157 ifneq "$(MKDEPENDHS_SRCS)" ""
158         $(MKDEPENDHS) -M -optdep-f -optdep.depend $(foreach way,$(WAYS),-optdep-s -optdep$(way)) $(foreach obj,$(MKDEPENDHS_OBJ_SUFFICES),-osuf $(obj)) $(MKDEPENDHS_OPTS) $(HC_OPTS) $(MKDEPENDHS_SRCS)
159 endif
160
161
162 ##################################################################
163 #                       boot
164 #
165 #  The boot target, at a minimum generates dependency information
166
167 .PHONY: boot
168 boot :: depend
169
170
171 ##################################################################
172 #               GNU Standard targets
173 #
174 #       Every Makefile should define the following targets
175
176 # `all'
177 #      Compile the entire program. This should be the default target.
178 #      This target need not rebuild any documentation files
179
180 # `install'
181 #      Compile the program and copy the executables, libraries, and so on
182 #      to the file names where they should reside for actual use. If
183 #      there is a simple test to verify that a program is properly
184 #      installed, this target should run that test.
185
186 #      The commands should create all the directories in which files are
187 #      to be installed, if they don't already exist. This includes the
188 #      directories specified as the values of the variables prefix and
189 #      exec_prefix , as well as all subdirectories that are needed. One
190 #      way to do this is by means of an installdirs target as described
191 #      below.
192
193 #      Use `-' before any command for installing a man page, so that make
194 #      will ignore any errors.  This is in case there are systems that
195 #      don't have the Unix man page documentation system installed.
196
197 # `uninstall'
198 #      Delete all the installed files that the `install' target would
199 #      create (but not the noninstalled files such as `make all' would
200 #      create).
201
202 # `clean'
203
204 #      Delete all files from the current directory that are normally
205 #      created by building the program.  Don't delete the files that
206 #      record the configuration. Also preserve files that could be made
207 #      by building, but normally aren't because the distribution comes
208 #      with them.
209
210 #      Delete `.dvi' files here if they are not part of the
211 #      distribution.
212
213 # `distclean'
214 #      Delete all files from the current directory that are created by
215 #      configuring or building the program. If you have unpacked the
216 #      source and built the program without creating any other files,
217 #      `make distclean' should leave only the files that were in the
218 #      distribution.
219
220 # `mostlyclean'
221 #      Like `clean', but may refrain from deleting a few files that
222 #      people normally don't want to recompile. For example, the
223 #      `mostlyclean' target for GCC does not delete `libgcc.a', because
224 #      recompiling it is rarely necessary and takes a lot of time.
225
226 # `maintainer-clean'
227 #      Delete everything from the current directory that can be
228 #      reconstructed with this Makefile.  This typically includes
229 #      everything deleted by distclean , plus more: C source files
230 #      produced by Bison, tags tables, and so on.
231
232 #      One exception, however: `make maintainer-clean' should not delete
233 #      `configure' even if `configure' can be remade using a rule in the
234 #      Makefile. More generally, `make maintainer-clean' should not delete
235 #      anything that needs to exist in order to run `configure' and then
236 #      begin to build the program.
237
238 # `TAGS'
239 #      Update a tags table for this program.
240
241 # `dvi' `ps' `pdf' `html' `pdf'
242 #      Generate DVI/PS/PDF files for LaTeX/DocBook docs. Not everything is
243 #      supported everywhere, but the intention is to standardise on DocBook
244 #      producing all formats.
245 #
246 # `check'
247 #      Perform self-tests (if any). The user must build the program
248 #      before running the tests, but need not install the program; you
249 #      should write the self-tests so that they work when the program is
250 #      built but not installed.
251
252 # The following targets are suggested as conventional names, for programs
253 # in which they are useful.
254
255 # installcheck
256 #      Perform installation tests (if any). The user must build and
257 #      install the program before running the tests. You should not
258 #      assume that `$(bindir)' is in the search path.
259
260 # installdirs
261 #      It's useful to add a target named `installdirs' to create the
262 #      directories where files are installed, and their parent
263 #      directories. There is a script called `mkinstalldirs' which is
264 #      convenient for this; find it in the Texinfo package.
265 #      (FPTOOLS: we use a close relative of the suggested script, situated
266 #       in glafp-utils/mkdirhier -- SOF)
267
268
269
270
271 ###########################################
272 #
273 #       Targets: "all"
274 #
275 ###########################################
276
277 # For each of these variables that is defined
278 # we generate one "all" rule and one rule for the variable itself:
279 #
280 #       HS_PROG         Haskell program
281 #       C_PROG          C program
282 #       LIBRARY         Library
283 #       SCRIPT_PROG     Script (e.g. Perl script)
284 #
285 # For details of exactly what rule is generated, see the
286 # relevant section below
287
288 .PHONY: all
289
290 #----------------------------------------
291 #       Haskell programs
292
293 ifneq "$(HS_PROG)" ""
294 all :: $(HS_PROG)
295
296 ifneq "$(BootingFromHc)" "YES"
297 $(HS_PROG) :: $(HS_OBJS)
298         $(HC) -o $@ $(HC_OPTS) $(LD_OPTS) $(HS_OBJS)
299 else
300 # see bootstrp.mk
301 $(HS_PROG) :: $(HS_OBJS)
302         $(CC) -o $@ $(HC_BOOT_CC_OPTS) $(HC_BOOT_LD_OPTS) $(HS_OBJS) $(HC_BOOT_LIBS)
303 endif
304 endif
305
306 # Object and interface files have suffixes tagged with their ways
307 ifneq "$(way)" ""
308 SRC_HC_OPTS += -hisuf $(way_)hi -hcsuf $(way_)hc -osuf $(way_)o
309 endif
310
311 # add syslib dependencies and current package name
312 SRC_HC_OPTS += $(patsubst %, -package %, $(HSLIB_DEPS)) -package-name $(HSLIB)
313
314 #----------------------------------------
315 #       C programs
316
317 ifneq "$(C_PROG)" ""
318 all :: $(C_PROG)
319
320 $(C_PROG) :: $(C_OBJS)
321         $(CC) -o $@ $(CC_OPTS) $(LD_OPTS) $(C_OBJS) $(LIBS)
322 endif
323
324
325 #----------------------------------------
326 #       Building HsLibs libraries.
327 #
328 # Inputs:
329 #   $(HSLIB) is the name of the library to build
330 #   $(IS_CBITS_LIB) should be "YES" for a "cbits" library
331 #
332 # Outputs:
333 #   $(LIBRARY)          the name of the library.a
334 #   $(GHIC_LIBRARY)     the name of the library.o (for GHCi0
335 #   $(LIBOBJS)          objects to put in library
336 #   $(STUBOBJS)         more objects to put in library
337
338 # $(LIBOBJS) is set to $(HS_OBJS) or $(C_OBJS) depending
339 # on whether or not it's a "cbits" library.  But you can
340 # override this by setting $(LIBOBJS) yourself
341
342 ifneq "$(HSLIB)" ""
343
344 ifeq "$(IS_CBITS_LIB)" "YES"
345 _cbits := _cbits
346 endif
347
348 LIBRARY      = libHS$(HSLIB)$(_cbits)$(_way).a
349 GHCI_LIBRARY = HS$(HSLIB)$(_cbits)$(_way).o
350
351 ifneq "$(IS_CBITS_LIB)" "YES"
352 WAYS=$(GhcLibWays)
353 endif
354
355 ifeq "$(LIBOBJS)" ""
356   ifeq "$(IS_CBITS_LIB)" "YES"
357   LIBOBJS = $(C_OBJS)
358   else
359   LIBOBJS = $(HS_OBJS)
360   endif
361 endif
362
363 STUBOBJS += $(HSC_C_OBJS)
364 SRC_CC_OPTS += -I$(GHC_INCLUDE_DIR) -I$(GHC_RUNTIME_DIR)
365
366 ifeq "$(IS_CBITS_LIB)" "YES"
367 override datadir:=$(libdir)/includes
368 INSTALL_DATAS += Hs$(shell perl -e 'print ucfirst "$(HSLIB)"').h
369 else
370 SRC_CC_OPTS += -Icbits
371 endif
372
373 endif # HSLIB
374
375 #----------------------------------------
376 #       Libraries/archives
377 #
378 # Build $(LIBRARY) from $(LIBOJBS)+$(STUBOBJS)
379 #
380 # Inputs:
381 #   $(LIBOBJS)
382 #   $(STUBOBJS)
383 #
384 # Outputs:
385 #   Rule to build $(LIBRARY)
386
387 ifneq "$(LIBRARY)" ""
388 all :: $(LIBRARY)
389
390 define BUILD_LIB
391 $(RM) $@
392 $(AR) $(AR_OPTS) $@ $(STUBOBJS) $(LIBOBJS)
393 $(RANLIB) $@
394 endef
395
396 #
397 # For Haskell object files, we might have chosen to split
398 # up the object files. Test for whether the library being
399 # built is consisting of Haskell files by (hackily) checking
400 # whether HS_SRCS is empty or not.
401 #
402
403 ifneq "$(HS_SRCS)" ""
404 ifeq "$(SplitObjs)" "YES"
405
406 # can't split objs in way 'u', so we disable it here
407 ifneq "$(way)" "u"
408
409 SRC_HC_OPTS += -split-objs
410
411 define BUILD_LIB
412 $(RM) $@
413 (echo $(STUBOBJS); $(FIND) $(patsubst %.$(way_)o,%,$(LIBOBJS)) -name '*.$(way_)o') | xargs ar q $@
414 $(RANLIB) $@
415 endef
416
417 # Extra stuff for compiling Haskell files with $(SplitObjs):
418
419 HC_SPLIT_PRE = \
420     $(RM) $@; if [ ! -d $(basename $@) ]; then mkdir $(basename $@); else \
421     $(FIND) $(basename $@) -name '*.$(way_)o' | xargs $(RM) __rm_food; fi
422 ifeq "$(GhcWithInterpreter)" "YES"
423 HC_SPLIT_POST = ld -r -x -o $@ $(basename $@)/*.$(way_)o
424 else
425 HC_SPLIT_POST = touch $@
426 endif # GhcWithInterpreter == YES
427
428 SRC_HC_PRE_OPTS  += $(HC_SPLIT_PRE);
429 SRC_HC_POST_OPTS += $(HC_SPLIT_POST);
430
431 #
432 # If (Haskell) object files are split, cleaning up 
433 # consist of descending into the directories where
434 # the myriads of object files have been put.
435 #
436
437 extraclean ::
438         $(FIND) $(patsubst %.$(way_)o,%,$(HS_OBJS)) -name '*.$(way_)o' -print | xargs $(RM) __rm_food
439         -rmdir $(patsubst %.$(way_)o,%,$(HS_OBJS)) > /dev/null 2>&1
440
441 endif # $(way) == u
442 endif # $(SplitObjs)
443 endif # $(HS_SRCS)
444
445 #
446 # Remove local symbols from library objects if requested.
447 #
448
449 ifeq "$(StripLibraries)" "YES"
450 ifeq "$(SplitObjs)" "YES"
451 SRC_HC_POST_OPTS += \
452   for i in $(basename $@)/*; do \
453         ld -r -x -o $$i.tmp $$i; \
454         $(MV) $$i.tmp $$i; \
455   done
456 else
457 SRC_HC_POST_OPTS += \
458   ld -r -x -o $@.tmp $@; $(MV) $@.tmp $@
459 endif # SplitObjs
460 endif # StripLibraries
461
462 $(LIBRARY) :: $(STUBOBJS) $(LIBOBJS)
463         $(BUILD_LIB)
464 endif # LIBRARY = ""
465
466 #--------------------------------------------------------------
467 #       Build dynamically-linkable libraries for GHCi
468 #
469 # Build $(GHCI_LIBRARY) from $(LIBOBJS)+$(STUBOBJS)
470 #
471 # Why?  GHCi can only link .o files (at the moment), not .a files
472 # so we have to build libFoo.o as well as libFoo.a
473 #
474 # Furthermore, GHCi currently never loads 
475 # profiling libraries (or other non-std ways)
476 #
477 # Inputs:
478 #   $(GHCI_LIBRARY)
479 #
480 # Outputs:
481 #   Rule to build $(GHCI_LIBRARY)
482
483
484 ifneq "$(GHCI_LIBRARY)" ""
485 ifeq "$(way)" ""
486 ifeq "$(GhcWithInterpreter)" "YES"
487
488
489 INSTALL_LIBS += $(GHCI_LIBRARY)
490 CLEAN_FILES += $(GHCI_LIBRARY)
491
492 all :: $(GHCI_LIBRARY)
493
494 ifneq "$(GHCI_LIBRARY)" "HSstd.o"
495 # An annoying gotcha is that the Prelude is a bit special,
496 # for reasons described in ghc/lib/std/Makefile.
497 # So we only put in this standard rule for packages other than std
498 # The rule for the Prelude is in ghc/lib/std/Makefile
499 # We check for GHCI_LIBRARY being HSstd.o rather than
500 # HSLIB being std, because we want to still use the boilerplate rule 
501 # for cbits.
502 $(GHCI_LIBRARY) :: $(LIBOBJS)
503         ld -r -x -o $@ $(LIBOBJS) $(STUBOBJS)
504 endif
505
506 endif # GhcWithInterpreter
507 endif # way
508 endif # GHCI_LIBRARY
509
510
511 #----------------------------------------
512 #       Building Win32 DLLs
513 #
514
515 ifeq "$(DLLized)" "YES"
516
517 ifneq "$(HSLIB)" ""
518
519 SRC_BLD_DLL_OPTS += --export-all --output-def=HS$(HSLIB)$(_cbits)$(_way).def DllVersionInfo.$(way_)o
520 ifneq "$(HSLIB)" "rts"
521 SRC_BLD_DLL_OPTS += -lHSstd_cbits_imp -L$(GHC_LIB_DIR)/std/cbits
522 SRC_BLD_DLL_OPTS += -lHSrts_$(way_)imp -L$(GHC_RUNTIME_DIR)
523 ifneq "$(HSLIB)" "std"
524   ifeq "$(IS_CBITS_LIB)" ""
525   SRC_BLD_DLL_OPTS += -lHSstd_$(way_)imp -L$(GHC_LIB_DIR)/std 
526   endif
527 endif
528 endif
529 SRC_BLD_DLL_OPTS += -lgmp -L. -L$(GHC_RUNTIME_DIR)/gmp
530 ifeq "$(IS_CBITS_LIB)" ""
531 SRC_BLD_DLL_OPTS += $(patsubst %,-lHS%_$(way_)imp, $(HSLIB_DEPS))
532 SRC_BLD_DLL_OPTS += $(patsubst %,-L../%, $(HSLIB_DEPS))
533 endif
534 ifneq "$(HAS_CBITS)" ""
535 SRC_BLD_DLL_OPTS += -lHS$(HSLIB)_cbits_imp -Lcbits
536 endif
537 SRC_BLD_DLL_OPTS += -lwsock32 -lwinmm
538
539 endif # HSLIB != ""
540
541 SplitObjs = NO 
542
543 ifneq "$(LIBRARY)" ""
544
545 all :: DllVersionInfo.$(way_)o
546
547 ifeq "$(DLL_NAME)" ""
548 DLL_NAME = $(patsubst %.a,%.dll,$(subst lib,,$(LIBRARY)))
549 endif
550
551 ifneq "$(DLL_NAME)" ""
552 DLL_NAME := $(DLL_PEN)/$(DLL_NAME)
553 endif
554
555 all :: $(DLL_NAME)
556
557 ifeq "$(DLL_IMPLIB_NAME)" ""
558 DLL_IMPLIB_NAME = $(patsubst %.a,%_imp.a,$(LIBRARY))
559 endif
560
561 $(DLL_NAME) :: $(LIBRARY)
562         $(BLD_DLL) --output-lib $(DLL_IMPLIB_NAME) -o $(DLL_NAME) $(LIBRARY) $(BLD_DLL_OPTS)
563 endif # LIBRARY != ""
564
565 endif # DLLized
566
567 #
568 # Version information is baked into a DLL by having the DLL include DllVersionInfo.o.
569 # The version info contains two user tweakables: DLL_VERSION and DLL_VERSION_NAME.
570 # (both are given sensible defaults though.)
571 #
572 # Note: this will not work as expected with Cygwin B20.1; you need a more recent
573 #       version of binutils (to pick up windres bugfixes.)
574
575 ifndef DLL_VERSION
576 DLL_VERSION=$(ProjectVersion)
577 endif
578
579 ifndef DLL_VERSION_NAME
580 DLL_VERSION_NAME="http://www.haskell.org/ghc"
581 endif
582
583 ifndef DLL_DESCRIPTION
584 DLL_DESCRIPTION="A GHC-compiled DLL"
585 endif
586
587 ifndef EXE_VERSION
588 EXE_VERSION=$(ProjectVersion)
589 endif
590
591 ifndef EXE_VERSION_NAME
592 EXE_VERSION_NAME="http://www.haskell.org/ghc"
593 endif
594
595 ifndef EXE_DESCRIPTION
596 EXE_DESCRIPTION="A GHC-compiled binary"
597 endif
598
599 #
600 # Little bit of lo-fi mangling to get at the right set of settings depending
601 # on whether we're generating the VERSIONINFO for a DLL or EXE
602
603 DLL_OR_EXE=$(subst VersionInfo.$(way_)rc,,$@)
604 VERSION_FT=$(subst Dll, 0x2L, $(subst Exe, 0x1L, $(DLL_OR_EXE)))
605 VERSION_RES_NAME=$(subst Exe,$(EXE_VERSION_NAME), $(subst Dll, $(DLL_VERSION_NAME),$(DLL_OR_EXE)))
606 VERSION_RES=$(subst Exe,$(EXE_VERSION), $(subst Dll, $(DLL_VERSION),$(DLL_OR_EXE)))
607 VERSION_DESC=$(subst Exe,$(EXE_DESCRIPTION), $(subst Dll, $(DLL_DESCRIPTION),$(DLL_OR_EXE)))
608
609 DllVersionInfo.$(way_)rc ExeVersionInfo.$(way_)rc:
610         $(RM) DllVersionInfo.$(way_)rc
611         echo "1 VERSIONINFO"                > $@
612         echo "FILEVERSION 1,0,0,1"         >> $@
613         echo "PRODUCTVERSION 1,0,0,1"      >> $@
614         echo "FILEFLAGSMASK 0x3fL"         >> $@
615         echo "FILEOS 0x4L"                 >> $@
616         echo "FILETYPE $(VERSION_FT)"      >> $@
617         echo "FILESUBTYPE 0x0L"            >> $@
618         echo "BEGIN"                       >> $@
619         echo " BLOCK \"StringFileInfo\""   >> $@
620         echo " BEGIN"                      >> $@
621         echo "  BLOCK \"040904B0\""        >> $@
622         echo "  BEGIN"                     >> $@
623         echo "   VALUE \"CompanyName\", \"$(VERSION_RES_NAME)\\0\"" >> $@
624         echo "   VALUE \"FileVersion\", \"$(VERSION_RES)\\0\"" >> $@
625         echo "   VALUE \"ProductVersion\", \"$(VERSION_RES)\\0\"" >> $@
626         echo "   VALUE \"FileDescription\", \"$(VERSION_DESC)\\0\"" >> $@
627         echo "  END" >> $@
628         echo " END" >> $@
629         echo " BLOCK \"VarFileInfo\""  >> $@
630         echo " BEGIN" >> $@
631         echo "  VALUE \"Translation\", 0x0409, 1200" >> $@
632         echo " END" >> $@
633         echo "END" >> $@
634
635 #----------------------------------------
636 #       Script programs
637
638 ifneq "$(SCRIPT_PROG)" ""
639
640 # To produce a fully functional script, you may
641 # have to add some configuration variables at the top of 
642 # the script, i.e., the compiler driver needs to know
643 # the path to various utils in the build tree for instance.
644 #
645 # To have the build rule for the script automatically do this
646 # for you, set the variable SCRIPT_SUBST_VARS to the list of
647 # variables you need to put in.
648
649 #
650 # SCRIPT_SUBST creates a string of echo commands that
651 # will when evaluated append the (perl)variable name and its value 
652 # to the target it is used for, i.e.,
653 #
654 #    A=foo
655 #    B=bar
656 #    SCRIPT_SUBST_VARS = A B
657 #    SCRIPT_SUBST=echo "$""A=\"foo\";" >> $@; echo "$""B=\"bar\";" >> $@
658 #
659 #    so if you have a rule like the following
660 #    
661 #     foo:
662 #         @(RM) $@
663 #         @(TOUCH) $@
664 #         @eval $(SCRIPT_SUBST)
665 #
666 #    `make foo' would create a file `foo' containing the following
667 #
668 #    % cat foo
669 #    $A=foo;
670 #    $B=bar;
671 #    %
672 #
673 # ToDo: make this work for shell scripts (drop the initial $).
674 #
675 ifeq "$(INTERP)" "$(SHELL)"
676 SCRIPT_SUBST=$(foreach val,$(SCRIPT_SUBST_VARS),"echo \"$(val)=\\\"$($(val))\\\";\" >> $@;")
677 else
678 SCRIPT_SUBST=$(foreach val,$(SCRIPT_SUBST_VARS),"echo \"$$\"\"$(val)=\\\"$($(val))\\\";\" >> $@;")
679 endif
680
681 all :: $(SCRIPT_PROG)
682
683 $(SCRIPT_PROG) : $(SCRIPT_OBJS)
684         $(RM) $@
685         @echo Creating $@...
686 ifeq "$(INTERP)" "perl"
687         echo "#! "$(PERL) > $@
688 else
689 ifneq "$(INTERP)" ""
690         @echo "#!"$(INTERP) > $@
691 else
692         @touch $@
693 endif
694 endif
695 ifneq "$(SCRIPT_PREFIX_FILES)" ""
696         @cat $(SCRIPT_PREFIX_FILES) >> $@
697 endif
698 ifneq "$(SCRIPT_SUBST)" ""
699         @eval $(SCRIPT_SUBST) 
700 endif
701         @cat $(SCRIPT_OBJS) >> $@
702         @chmod a+x $@
703         @echo Done.
704 endif
705
706 # ---------------------------------------------------------------------------
707 # Symbolic links
708
709 # links to programs: we sometimes install a program as
710 # <name>-<version> with a link from <name> to the real program.
711
712 ifneq "$(LINK)" ""
713
714 all :: $(LINK)
715
716 CLEAN_FILES += $(LINK)
717
718 ifeq "$(LINK_TARGET)" ""
719 ifneq "$(SCRIPT_PROG)" ""
720 LINK_TARGET = $(SCRIPT_PROG)
721 else
722 ifneq "$(HS_PROG)" ""
723 LINK_TARGET = $(HS_PROG)
724 else
725 ifneq "$(C_PROG)" ""
726 LINK_TARGET = $(C_PROG)
727 else
728 LINK_TARGET = dunno
729 endif
730 endif
731 endif
732 endif
733
734 #
735 # Don't want to overwrite $(LINK)s that aren't symbolic
736 # links. Testing for symbolic links is problematic to do in
737 # a portable fashion using a /bin/sh test, so we simply rely
738 # on perl.
739 #
740 $(LINK) : $(LINK_TARGET)
741         @if ( $(PERL) -e '$$fn="$(LINK)"; exit ((! -f $$fn || -l $$fn) ? 0 : 1);' ); then \
742            echo "Creating a symbolic link from $(LINK_TARGET) to $(LINK)"; \
743            $(RM) $(LINK); \
744            $(LN_S) $(LINK_TARGET) $(LINK); \
745          else \
746            echo "Creating a symbolic link from $(LINK_TARGET) to $(LINK) failed: \`$(LINK)' already exists"; \
747            echo "Perhaps remove \`$(LINK)' manually?"; \
748            exit 1; \
749          fi;
750
751
752 #
753 # install links to script drivers.
754 #
755 install ::
756         @$(INSTALL_DIR) $(bindir)
757         @if ( $(PERL) -e '$$fn="$(bindir)/$(LINK)"; exit ((! -f $$fn || -l $$fn) ? 0 : 1);' ); then \
758            echo "Creating a symbol link from $(LINK_TARGET) to $(LINK) in $(bindir)"; \
759            $(RM) $(bindir)/$(LINK); \
760            $(LN_S) $(LINK_TARGET) $(bindir)/$(LINK); \
761          else \
762            echo "Creating a symbol link from $(LINK_TARGET) to $(LINK) in $(bindir) failed: \`$(bindir)/$(LINK)' already exists"; \
763            echo "Perhaps remove \`$(bindir)/$(LINK)' manually?"; \
764            exit 1; \
765          fi;
766
767 endif # LINK 
768
769
770 ###########################################
771 #
772 #       Targets: install install-strip uninstall
773 #
774 ###########################################
775
776 # For each of these variables that is defined, you
777 # get one install rule
778 #
779 #       INSTALL_PROGS        executable programs in $(bindir)
780 #       INSTALL_SCRIPTS      executable scripts in $(bindir)
781 #       INSTALL_LIBS         platform-dependent libraries in $(libdir) (ranlib'ed)
782 #       INSTALL_LIB_SCRIPTS  platform-dependent scripts   in $(libdir)
783 #       INSTALL_LIBEXECS     platform-dependent execs in $(libdir)
784 #       INSTALL_DATAS        platform-independent files in $(datadir)
785 #
786 # If the installation directory variable is undefined, the install rule simply
787 # emits a suitable error message.
788 #
789 # Remember, too, that the installation directory variables ($(bindir) and
790 # friends can be overridden from their original settings in mk/config.mk.in
791 # || mk/build.mk
792 #
793 .PHONY: install installdirs install-strip install-dirs uninstall install-docs show-install
794
795 show-install :
796         @echo "bindir = $(bindir)"
797         @echo "libdir = $(libdir)"
798         @echo "libexecdir = $(libexecdir)  # by default, same as libdir"
799         @echo "datadir = $(datadir)  # unused for ghc project"
800
801 #
802 # Sometimes useful to separate out the creation of install directories 
803 # from the installation itself.
804 #
805 install-dirs ::
806         @$(INSTALL_DIR) $(bindir)
807         @$(INSTALL_DIR) $(libdir)
808         @$(INSTALL_DIR) $(libexecdir)
809         @$(INSTALL_DIR) $(datadir)
810
811 # Better do this first...
812 # but we won't for the moment, do it on-demand from
813 # within the various install targets instead.
814 #install:: install-dirs
815
816 # Install libraries automatically
817 ifneq "$(LIBRARY)" ""
818 INSTALL_LIBS  += $(LIBRARY)
819 ifeq "$(DLLized)" "YES"
820 INSTALL_PROGS += $(DLL_NAME)
821 INSTALL_LIBS += $(patsubst %.a,%_imp.a, $(LIBRARY))
822 endif
823 INSTALL_DATAS += $(HS_IFACES)
824 endif
825
826 ifneq "$(INSTALL_PROGS)" ""
827
828 #
829 # Here's an interesting one - when using the win32 version
830 # of install (provided via the cygwin toolkit), we have to
831 # supply the .exe suffix, *if* there's no other suffix.
832 #
833 # The rule below does this by ferreting out the suffix of each
834 # entry in the INSTALL_PROGS list. If there's no suffix, use
835 # $(exeext).
836
837 # This is bit of a pain to express since GNU make doesn't have
838 # something like $(if ...), but possible using $(subst ...)
839 # [Aside: I added support for $(if ...) to my local copy of GNU
840 # make at one stage, perhaps I should propagate the patch to
841 # the GNU make maintainers...] 
842 #
843 INSTALL_PROGS := $(foreach p, $(INSTALL_PROGS), $(addsuffix $(subst _,,$(subst __,$(exeext),_$(suffix $(p))_)), $(basename $(p))))
844
845 install:: $(INSTALL_PROGS)
846         @$(INSTALL_DIR) $(bindir)
847         @for i in $(INSTALL_PROGS); do \
848                     echo $(INSTALL_PROGRAM) $(INSTALL_BIN_OPTS) $$i $(bindir); \
849                     $(INSTALL_PROGRAM) $(INSTALL_BIN_OPTS) $$i $(bindir) ;  \
850         done
851 endif
852
853 #
854 # Just like INSTALL_PROGS, but prefix with install sites bin/lib/data and
855 # install without stripping.
856 #
857 ifneq "$(INSTALL_SCRIPTS)" ""
858 install:: $(INSTALL_SCRIPTS)
859         @$(INSTALL_DIR) $(bindir)
860         for i in $(INSTALL_SCRIPTS); do \
861                 $(INSTALL_SCRIPT) $(INSTALL_OPTS) $$i $(bindir); \
862         done
863 endif
864
865 ifneq "$(INSTALL_LIB_SCRIPTS)" ""
866 install:: $(INSTALL_LIB_SCRIPTS)
867         @$(INSTALL_DIR) $(libdir)
868         for i in $(INSTALL_LIB_SCRIPTS); do \
869                 $(INSTALL_SCRIPT) $(INSTALL_OPTS) $$i $(libdir); \
870         done
871 endif
872
873 ifneq "$(INSTALL_LIBEXEC_SCRIPTS)" ""
874 install:: $(INSTALL_LIBEXEC_SCRIPTS)
875         @$(INSTALL_DIR) $(libexecdir)
876         for i in $(INSTALL_LIBEXEC_SCRIPTS); do \
877                 $(INSTALL_SCRIPT) $(INSTALL_OPTS) $$i $(libexecdir); \
878         done
879 endif
880
881 ifneq "$(INSTALL_LIBS)" ""
882 install:: $(INSTALL_LIBS)
883         @$(INSTALL_DIR) $(libdir)
884         for i in $(INSTALL_LIBS); do \
885                 case $$i in \
886                   *.a) \
887                     $(INSTALL_DATA) $(INSTALL_OPTS) $$i $(libdir); \
888                     $(RANLIB) $(libdir)/`basename $$i` ;; \
889                   *.dll) \
890                     $(INSTALL_DATA) -s $(INSTALL_OPTS) $$i $(libdir) ;; \
891                   *) \
892                     $(INSTALL_DATA) $(INSTALL_OPTS) $$i $(libdir); \
893                 esac; \
894         done
895 endif
896
897 ifneq "$(INSTALL_LIBEXECS)" ""
898 #
899 # See above comment next to defn of INSTALL_PROGS for what
900 # the purpose of this one-liner is.
901
902 INSTALL_LIBEXECS := $(foreach p, $(INSTALL_LIBEXECS), $(addsuffix $(subst _,,$(subst __,$(exeext),_$(suffix $(p))_)), $(basename $(p))))
903
904 install:: $(INSTALL_LIBEXECS)
905         @$(INSTALL_DIR) $(libexecdir)
906         -for i in $(INSTALL_LIBEXECS); do \
907                 $(INSTALL_PROGRAM) $(INSTALL_BIN_OPTS) $$i $(libexecdir); \
908         done
909 endif
910
911 ifneq "$(INSTALL_DATAS)" ""
912 install:: $(INSTALL_DATAS)
913         @$(INSTALL_DIR) $(datadir)
914         for i in $(INSTALL_DATAS); do \
915                 $(INSTALL_DATA) $(INSTALL_OPTS) $$i $(datadir); \
916         done
917 endif
918
919 ifneq "$(INSTALL_INCLUDES)" ""
920 install:: $(INSTALL_INCLUDES)
921         @$(INSTALL_DIR) $(includedir)
922         for i in $(INSTALL_INCLUDES); do \
923                 $(INSTALL_DATA) $(INSTALL_OPTS) $$i $(includedir); \
924         done
925 endif
926
927 #
928 # Use with care..
929 #
930 uninstall:: 
931         @for i in $(INSTALL_PROGS) "" ; do                      \
932           if test "$$i"; then                                   \
933                 echo rm -f $(bindir)/`basename $$i`;            \
934                 rm -f $(bindir)/`basename $$i`;                 \
935           fi;                                                   \
936         done
937         @for i in $(INSTALL_LIBS) ""; do                        \
938           if test "$$i"; then                                   \
939                 echo rm -f $(libdir)/`basename $$i`;            \
940                 rm -f $(libdir)/`basename $$i`;                 \
941           fi;                                                   \
942         done
943         @for i in $(INSTALL_LIBEXECS) ""; do                    \
944           if test "$$i"; then                                   \
945                 echo rm -f $(libexecdir)/`basename $$i`;        \
946                 rm -f $(libexecdir)/`basename $$i`;             \
947           fi;                                                   \
948         done
949         @for i in $(INSTALL_DATAS) ""; do                       \
950           if test "$$i"; then                                   \
951                 echo rm -f $(datadir)/`basename $$i`;           \
952                 rm -f $(datadir)/`basename $$i`;                \
953           fi;                                                   \
954         done
955
956 #
957 # install-strip is from the GNU Makefile standard.
958 #
959 ifneq "$(way)" ""
960 install-strip::
961         @$(MAKE) EXTRA_INSTALL_OPTS='-s' install                                        
962 endif
963
964 ###########################################
965 #
966 #       Targets: check tags show
967 #
968 ###########################################
969
970 #------------------------------------------------------------
971 #                       Check
972
973 .PHONY: check
974
975 check:: $(TESTS)
976         @for i in $(filter-out %.lhs .hs, $(TESTS)) ''; do      \
977           if (test -f "$$i"); then              \
978             echo Running: `basename $$i` ;      \
979             cd test; `basename $$i` ;           \
980           fi;                                   \
981         done;
982
983 #------------------------------------------------------------
984 #                       Tags
985
986 .PHONY: TAGS tags
987
988 tags TAGS:: $(TAGS_HS_SRCS) $(TAGS_C_SRCS)
989         @$(RM) TAGS
990         @touch TAGS
991 ifneq "$(TAGS_HS_SRCS)" ""
992         $(HSTAGS) $(HSTAGS_OPTS) -- $(TAGS_HS_SRCS)
993 endif
994 ifneq "$(TAGS_C_SRCS)" ""
995         etags -a $(TAGS_C_SRCS)
996 endif
997         @( DEREFFED=`ls -l Makefile | sed -e 's/.*-> \(.*\)/\1/g'` && $(RM) `dirname $$DEREFFED`/TAGS && $(CP) TAGS `dirname $$DEREFFED` ) 2>/dev/null || echo TAGS file generated, perhaps copy over to source tree?
998
999 #------------------------------------------------------------
1000 #                       Makefile debugging
1001 # to see the effective value used for a Makefile variable, do
1002 #  make show VALUE=MY_VALUE
1003 #
1004
1005 show:
1006         @echo '$(VALUE)=$($(VALUE))'
1007
1008 #--------------------------------------------------------------------------
1009 # SGML Documentation
1010 #
1011 .PHONY: dvi ps html pdf rtf
1012
1013 ifneq "$(SGML_DOC)" ""
1014
1015 # multi-file SGML document: main document name is specified in $(SGML_DOC),
1016 # sub-documents (.sgml files) listed in $(SGML_SRCS).
1017
1018 ifeq "$(SGML_SRCS)" ""
1019 SGML_SRCS = $(wildcard *.sgml)
1020 endif
1021
1022 SGML_TEX  = $(addsuffix .tex,$(SGML_DOC))
1023 SGML_DVI  = $(addsuffix .dvi,$(SGML_DOC))
1024 SGML_PS   = $(addsuffix .ps,$(SGML_DOC))
1025 SGML_PDF  = $(addsuffix .pdf,$(SGML_DOC))
1026 SGML_RTF  = $(addsuffix .rtf,$(SGML_DOC))
1027 SGML_HTML = $(addsuffix .html,$(SGML_DOC))
1028 # HTML output goes in a subdirectory on its own.
1029 SGML_TEXT = $(addsuffix .txt,$(SGML_DOC))
1030
1031 $(SGML_DVI) $(SGML_PS) $(SGML_HTML) $(SGML_TEXT) $(SGML_PDF) :: $(SGML_SRCS)
1032
1033 dvi  :: $(SGML_DVI)
1034 ps   :: $(SGML_PS)
1035 pdf  :: $(SGML_PDF)
1036 rtf  :: $(SGML_RTF)
1037 html :: $(SGML_HTML)
1038 txt  :: $(SGML_TEXT)
1039
1040 CLEAN_FILES += $(SGML_TEXT) $(SGML_TEX) $(SGML_PS) $(SGML_DVI) $(SGML_PDF) $(SGML_RTF) $(SGML_HTML) $(SGML_DOC)-*.html
1041 # can't use $(SGML_SRCS) here, it was maybe used elsewhere
1042
1043 extraclean ::
1044         $(RM) -rf DBTOHTML_OUTPUT_*
1045         $(RM) -rf *.junk/
1046         $(RM) -rf $(SGML_DOC)
1047 endif
1048
1049 ###########################################
1050 #
1051 #       Targets: clean
1052 #
1053 ###########################################
1054
1055 # we have to be careful about recursion here; since all the clean
1056 # targets are recursive, we don't want to make eg. distclean depend on
1057 # clean because that would result in far too many recursive calls.
1058
1059 .PHONY: mostlyclean clean distclean maintainer-clean
1060
1061 mostlyclean::
1062         rm -f $(MOSTLY_CLEAN_FILES)
1063
1064 # extraclean is used for adding actions to the clean target.
1065 extraclean::
1066
1067 clean:: extraclean
1068         rm -f $(MOSTLY_CLEAN_FILES) $(CLEAN_FILES)
1069
1070 distclean:: extraclean
1071         rm -f $(MOSTLY_CLEAN_FILES) $(CLEAN_FILES) $(DIST_CLEAN_FILES)
1072
1073 maintainer-clean:: extraclean
1074         @echo 'This command is intended for maintainers to use; it'
1075         @echo 'deletes files that may need special tools to rebuild.'
1076         rm -f $(MOSTLY_CLEAN_FILES) $(CLEAN_FILES) $(DIST_CLEAN_FILES) $(MAINTAINER_CLEAN_FILES)
1077
1078 #################################################################################
1079 #
1080 #                       Way management
1081 #
1082 #################################################################################
1083
1084 # Here is the ingenious jiggery pokery that allows you to build multiple versions
1085 # of a program in a single build tree.
1086 #
1087 # The ways setup requires the following variables to be set:
1088 #
1089 # Expects:      $(WAYS)                 the possible "way" strings to one of 
1090 #                                       which $(way) will be set
1091
1092
1093 # So how does $(way) ever get set to anything?  Answer, we recursively
1094 # invoke make, setting $(way) on the command line.
1095 # When do we do this recursion?  Answer: whenever the programmer
1096 # asks make to make a target that involves a way suffix.
1097 # We must remember *not* to recurse again; but that's easy: we
1098 # just see if $(way) is set:
1099
1100 ifeq "$(way)" ""
1101
1102 # If $(WAYS) = p mc, then WAY_TARGETS expands to
1103 #       %.p_lhs %.p_hs %.p_o ... %.mc_lhs %.p_hs ...
1104 # and OTHER_WAY_TARGETS to
1105 #       %_p.a %_p %_mc.a %_mc
1106 # where the suffixes are from $(SUFFIXES)
1107 #
1108 # We have to treat libraries and "other" targets differently, 
1109 # because their names are of the form
1110 #       libHS_p.a and Foo_p
1111 # whereas everything else has names of the form
1112 #       Foo.p_o
1113
1114 FPTOOLS_SUFFIXES := o hi hc
1115
1116 WAY_TARGETS     = $(foreach way,$(WAYS),$(foreach suffix, $(FPTOOLS_SUFFIXES), %.$(way)_$(suffix)))
1117 LIB_WAY_TARGETS = $(foreach way,$(WAYS),%_$(way).a %_$(way))
1118
1119 # $@ will be something like Foo.p_o
1120 # $(suffix $@)     returns .p_o
1121 # $(subst .,.p_o)  returns p_o
1122 # $(subst _,.,p_o) returns p.o   (clever)
1123 # $(basename p.o)  returns p
1124
1125 $(WAY_TARGETS) :
1126         $(MAKE) way=$(basename $(subst _,.,$(subst .,,$(suffix $@)))) $@
1127
1128 # $(@F) will be something like libHS_p.a, or Foo_p
1129 # $(basename $(@F)) will be libHS_p, or Foo_p
1130 # The sed script extracts the "p" part.
1131
1132 $(LIB_WAY_TARGETS) :
1133         $(MAKE) $(MFLAGS) $@ way=$(subst .,,$(suffix $(subst _,.,$(basename $@))))
1134
1135 endif   # if way
1136
1137 ifneq "$(WAYS)" ""
1138 ifeq "$(way)" ""
1139
1140 # NB: the targets exclude 
1141 #       boot runtests
1142 # since these are way-independent
1143 all docs TAGS clean distclean mostlyclean maintainer-clean install ::
1144         @echo "------------------------------------------------------------------------"
1145         @echo "===fptools== Recursively making \`$@' for ways: $(WAYS) ..."
1146         @echo "PWD = $(shell pwd)"
1147         @echo "------------------------------------------------------------------------"
1148 # Don't rely on -e working, instead we check exit return codes from sub-makes.
1149         @case '${MFLAGS}' in *-[ik]*) x_on_err=0;; *-r*[ik]*) x_on_err=0;; *) x_on_err=1;; esac; \
1150         for i in $(WAYS) ; do \
1151           echo "------------------------------------------------------------------------"; \
1152           echo "==fptools== $(MAKE) way=$$i $@;"; \
1153           echo "PWD = $(shell pwd)"; \
1154           echo "------------------------------------------------------------------------"; \
1155           $(MAKE) way=$$i --no-print-directory $(MFLAGS) $@ ; \
1156           if [ $$? -eq 0 ] ; then true; else exit $$x_on_err; fi; \
1157         done
1158         @echo "------------------------------------------------------------------------"
1159         @echo "===fptools== Finished recursively making \`$@' for ways: $(WAYS) ..."
1160         @echo "PWD = $(shell pwd)"
1161         @echo "------------------------------------------------------------------------"
1162
1163 endif
1164 endif