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