[project @ 2001-11-12 14:13:35 by simonmar]
[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 # We generate the archive into a temporary file libfoo.a.tmp, then
441 # rename it at the end.  This avoids the problem that ar may sometimes
442 # fail, leaving a partially built archive behind.
443 ifeq "$(ArSupportsInput)" ""
444 define BUILD_LIB
445 $(RM) $@ $@.tmp
446 (echo $(STUBOBJS); $(FIND) $(patsubst %.$(way_)o,%,$(LIBOBJS)) -name '*.$(way_)o') | xargs ar q $@.tmp
447 $(RANLIB) $@.tmp
448 $(MV) $@.tmp $@
449 endef
450 else
451 define BUILD_LIB
452 $(RM) $@ $@.tmp
453 echo $(STUBOBJS) > $@.list
454 $(FIND) $(patsubst %.$(way_)o,%,$(LIBOBJS)) -name '*.$(way_)o' >> $@.list
455 $(AR) $(AR_OPTS) $@.tmp $(ArSupportsInput) $@.list
456 $(RM) $@.list
457 $(RANLIB) $@.tmp
458 $(MV) $@.tmp $@
459 endef
460 endif
461
462 # Extra stuff for compiling Haskell files with $(SplitObjs):
463
464 HC_SPLIT_PRE = \
465     $(RM) $@; if [ ! -d $(basename $@) ]; then mkdir $(basename $@); else \
466     $(FIND) $(basename $@) -name '*.$(way_)o' | xargs $(RM) __rm_food; fi
467 ifeq "$(GhcWithInterpreter)" "YES"
468 HC_SPLIT_POST = $(LD) -r $(LD_X) -o $@ $(basename $@)/*.$(way_)o
469 else
470 HC_SPLIT_POST = touch $@
471 endif # GhcWithInterpreter == YES
472
473 SRC_HC_PRE_OPTS  += $(HC_SPLIT_PRE);
474 SRC_HC_POST_OPTS += $(HC_SPLIT_POST);
475
476 #
477 # If (Haskell) object files are split, cleaning up 
478 # consist of descending into the directories where
479 # the myriads of object files have been put.
480 #
481
482 extraclean ::
483         $(FIND) $(patsubst %.$(way_)o,%,$(HS_OBJS)) -name '*.$(way_)o' -print | xargs $(RM) __rm_food
484         -rmdir $(patsubst %.$(way_)o,%,$(HS_OBJS)) > /dev/null 2>&1
485
486 endif # $(way) == u
487 endif # $(SplitObjs)
488 endif # $(HS_SRCS)
489
490 #
491 # Remove local symbols from library objects if requested.
492 #
493
494 ifeq "$(StripLibraries)" "YES"
495 ifeq "$(SplitObjs)" "YES"
496 SRC_HC_POST_OPTS += \
497   for i in $(basename $@)/*; do \
498         $(LD) -r $(LD_X) -o $$i.tmp $$i; \
499         $(MV) $$i.tmp $$i; \
500   done
501 else
502 SRC_HC_POST_OPTS += \
503   $(LD) -r $(LD_X) -o $@.tmp $@; $(MV) $@.tmp $@
504 endif # SplitObjs
505 endif # StripLibraries
506
507 $(LIBRARY) :: $(STUBOBJS) $(LIBOBJS)
508         $(BUILD_LIB)
509 endif # LIBRARY = ""
510
511 #--------------------------------------------------------------
512 #       Build dynamically-linkable libraries for GHCi
513 #
514 # Build $(GHCI_LIBRARY) from $(LIBOBJS)+$(STUBOBJS)
515 #
516 # Why?  GHCi can only link .o files (at the moment), not .a files
517 # so we have to build libFoo.o as well as libFoo.a
518 #
519 # Furthermore, GHCi currently never loads 
520 # profiling libraries (or other non-std ways)
521 #
522 # Inputs:
523 #   $(GHCI_LIBRARY)
524 #
525 # Outputs:
526 #   Rule to build $(GHCI_LIBRARY)
527
528
529 ifneq "$(GHCI_LIBRARY)" ""
530 ifeq "$(way)" ""
531 ifeq "$(GhcWithInterpreter)" "YES"
532
533
534 INSTALL_LIBS += $(GHCI_LIBRARY)
535 CLEAN_FILES += $(GHCI_LIBRARY)
536
537 all :: $(GHCI_LIBRARY)
538
539 ifneq "$(DONT_WANT_STD_GHCI_LIB_RULE)" "YES"
540 # If you don't want to build GHCI_LIBRARY the 'standard' way,
541 # set DONT_WANT_STD_GHCI_LIB_RULE to YES. The Prelude and
542 # hslibs/Win32 uses this 'feature'.
543 #
544 $(GHCI_LIBRARY) :: $(LIBOBJS)
545         $(LD) -r $(LD_X) -o $@ $(LIBOBJS) $(STUBOBJS)
546
547 endif # DONT_WANT_STD_GHCI_LIB_RULE
548 endif # GhcWithInterpreter
549 endif # way
550 endif # GHCI_LIBRARY != ""
551
552
553 #----------------------------------------
554 #       Building Win32 DLLs
555 #
556
557 ifeq "$(DLLized)" "YES"
558 SRC_CC_OPTS += -DDLLized
559
560 ifneq "$(PACKAGE)" ""
561
562 SRC_BLD_DLL_OPTS += --export-all --output-def=HS$(PACKAGE)$(_cbits)$(_way).def DllVersionInfo.$(way_)o
563
564 ifneq "$(PACKAGE) $(IS_CBITS_LIB)" "std YES"
565 ifneq "$(PACKAGE)" "rts"
566 SRC_BLD_DLL_OPTS += -lHSstd_cbits_imp -L$(GHC_LIB_DIR)/std/cbits
567 SRC_BLD_DLL_OPTS += -lHSrts_$(way_)imp -L$(GHC_RUNTIME_DIR)
568 ifneq "$(PACKAGE)" "std"
569   ifeq "$(IS_CBITS_LIB)" ""
570   SRC_BLD_DLL_OPTS += -lHSstd_$(way_)imp -L$(GHC_LIB_DIR)/std 
571   endif
572 endif
573 endif
574 endif
575
576 SRC_BLD_DLL_OPTS += -lgmp -L. -L$(GHC_RUNTIME_DIR)/gmp
577 ifeq "$(IS_CBITS_LIB)" ""
578 SRC_BLD_DLL_OPTS += $(patsubst %,-lHS%_$(way_)imp, $(PACKAGE_DEPS))
579 SRC_BLD_DLL_OPTS += $(patsubst %,-L../%, $(PACKAGE_DEPS))
580 endif
581 ifneq "$(HAS_CBITS)" ""
582 SRC_BLD_DLL_OPTS += -lHS$(PACKAGE)_cbits_imp -Lcbits
583 endif
584 SRC_BLD_DLL_OPTS += -lwsock32 -lwinmm
585
586 endif # PACKAGE != ""
587
588 SplitObjs = NO 
589
590 ifneq "$(LIBRARY)" ""
591
592 all :: DllVersionInfo.$(way_)o
593
594 ifeq "$(DLL_NAME)" ""
595 DLL_NAME = $(patsubst %.a,%.dll,$(subst lib,,$(LIBRARY)))
596 endif
597
598 ifneq "$(DLL_NAME)" ""
599 DLL_NAME := $(DLL_PEN)/$(DLL_NAME)
600 endif
601
602 all :: $(DLL_NAME)
603
604 ifeq "$(DLL_IMPLIB_NAME)" ""
605 DLL_IMPLIB_NAME = $(patsubst %.a,%_imp.a,$(LIBRARY))
606 endif
607
608 $(DLL_NAME) :: $(LIBRARY)
609         $(BLD_DLL) --output-lib $(DLL_IMPLIB_NAME) -o $(DLL_NAME) $(LIBRARY) $(BLD_DLL_OPTS)
610 endif # LIBRARY != ""
611
612 endif # DLLized
613
614 #
615 # Version information is baked into a DLL by having the DLL include DllVersionInfo.o.
616 # The version info contains two user tweakables: DLL_VERSION and DLL_VERSION_NAME.
617 # (both are given sensible defaults though.)
618 #
619 # Note: this will not work as expected with Cygwin B20.1; you need a more recent
620 #       version of binutils (to pick up windres bugfixes.)
621
622 ifndef DLL_VERSION
623 DLL_VERSION=$(ProjectVersion)
624 endif
625
626 ifndef DLL_VERSION_NAME
627 DLL_VERSION_NAME="http://www.haskell.org/ghc"
628 endif
629
630 ifndef DLL_DESCRIPTION
631 DLL_DESCRIPTION="A GHC-compiled DLL"
632 endif
633
634 ifndef EXE_VERSION
635 EXE_VERSION=$(ProjectVersion)
636 endif
637
638 ifndef EXE_VERSION_NAME
639 EXE_VERSION_NAME="http://www.haskell.org/ghc"
640 endif
641
642 ifndef EXE_DESCRIPTION
643 EXE_DESCRIPTION="A GHC-compiled binary"
644 endif
645
646 #
647 # Little bit of lo-fi mangling to get at the right set of settings depending
648 # on whether we're generating the VERSIONINFO for a DLL or EXE
649
650 DLL_OR_EXE=$(subst VersionInfo.$(way_)rc,,$@)
651 VERSION_FT=$(subst Dll, 0x2L, $(subst Exe, 0x1L, $(DLL_OR_EXE)))
652 VERSION_RES_NAME=$(subst Exe,$(EXE_VERSION_NAME), $(subst Dll, $(DLL_VERSION_NAME),$(DLL_OR_EXE)))
653 VERSION_RES=$(subst Exe,$(EXE_VERSION), $(subst Dll, $(DLL_VERSION),$(DLL_OR_EXE)))
654 VERSION_DESC=$(subst Exe,$(EXE_DESCRIPTION), $(subst Dll, $(DLL_DESCRIPTION),$(DLL_OR_EXE)))
655
656 DllVersionInfo.$(way_)rc ExeVersionInfo.$(way_)rc:
657         $(RM) DllVersionInfo.$(way_)rc
658         echo "1 VERSIONINFO"                > $@
659         echo "FILEVERSION 1,0,0,1"         >> $@
660         echo "PRODUCTVERSION 1,0,0,1"      >> $@
661         echo "FILEFLAGSMASK 0x3fL"         >> $@
662         echo "FILEOS 0x4L"                 >> $@
663         echo "FILETYPE $(VERSION_FT)"      >> $@
664         echo "FILESUBTYPE 0x0L"            >> $@
665         echo "BEGIN"                       >> $@
666         echo " BLOCK \"StringFileInfo\""   >> $@
667         echo " BEGIN"                      >> $@
668         echo "  BLOCK \"040904B0\""        >> $@
669         echo "  BEGIN"                     >> $@
670         echo "   VALUE \"CompanyName\", \"$(VERSION_RES_NAME)\\0\"" >> $@
671         echo "   VALUE \"FileVersion\", \"$(VERSION_RES)\\0\"" >> $@
672         echo "   VALUE \"ProductVersion\", \"$(VERSION_RES)\\0\"" >> $@
673         echo "   VALUE \"FileDescription\", \"$(VERSION_DESC)\\0\"" >> $@
674         echo "  END" >> $@
675         echo " END" >> $@
676         echo " BLOCK \"VarFileInfo\""  >> $@
677         echo " BEGIN" >> $@
678         echo "  VALUE \"Translation\", 0x0409, 1200" >> $@
679         echo " END" >> $@
680         echo "END" >> $@
681
682 #----------------------------------------
683 #       Script programs
684
685 ifneq "$(SCRIPT_PROG)" ""
686
687 # To produce a fully functional script, you may
688 # have to add some configuration variables at the top of 
689 # the script, i.e., the compiler driver needs to know
690 # the path to various utils in the build tree for instance.
691 #
692 # To have the build rule for the script automatically do this
693 # for you, set the variable SCRIPT_SUBST_VARS to the list of
694 # variables you need to put in.
695
696 #
697 # SCRIPT_SUBST creates a string of echo commands that
698 # will when evaluated append the (perl)variable name and its value 
699 # to the target it is used for, i.e.,
700 #
701 #    A=foo
702 #    B=bar
703 #    SCRIPT_SUBST_VARS = A B
704 #    SCRIPT_SUBST=echo "$""A=\"foo\";" >> $@; echo "$""B=\"bar\";" >> $@
705 #
706 #    so if you have a rule like the following
707 #    
708 #     foo:
709 #         @(RM) $@
710 #         @(TOUCH) $@
711 #         @eval $(SCRIPT_SUBST)
712 #
713 #    `make foo' would create a file `foo' containing the following
714 #
715 #    % cat foo
716 #    $A=foo;
717 #    $B=bar;
718 #    %
719 #
720 # ToDo: make this work for shell scripts (drop the initial $).
721 #
722 ifeq "$(INTERP)" "$(SHELL)"
723 SCRIPT_SUBST=$(foreach val,$(SCRIPT_SUBST_VARS),"echo \"$(val)=\\\"$($(val))\\\";\" >> $@;")
724 else
725 SCRIPT_SUBST=$(foreach val,$(SCRIPT_SUBST_VARS),"echo \"$$\"\"$(val)=\\\"$($(val))\\\";\" >> $@;")
726 endif
727
728 all :: $(SCRIPT_PROG)
729
730 $(SCRIPT_PROG) : $(SCRIPT_OBJS)
731         $(RM) $@
732         @echo Creating $@...
733 ifeq "$(INTERP)" "perl"
734         echo "#! "$(PERL) > $@
735 else
736 ifneq "$(INTERP)" ""
737         @echo "#!"$(INTERP) > $@
738 else
739         @touch $@
740 endif
741 endif
742 ifneq "$(SCRIPT_PREFIX_FILES)" ""
743         @cat $(SCRIPT_PREFIX_FILES) >> $@
744 endif
745 ifneq "$(SCRIPT_SUBST)" ""
746         @eval $(SCRIPT_SUBST) 
747 endif
748         @cat $(SCRIPT_OBJS) >> $@
749         @chmod a+x $@
750         @echo Done.
751 endif
752
753 # ---------------------------------------------------------------------------
754 # Symbolic links
755
756 # links to programs: we sometimes install a program as
757 # <name>-<version> with a link from <name> to the real program.
758
759 ifneq "$(LINK)" ""
760
761 all :: $(LINK)
762
763 CLEAN_FILES += $(LINK)
764
765 ifeq "$(LINK_TARGET)" ""
766 ifneq "$(SCRIPT_PROG)" ""
767 LINK_TARGET = $(SCRIPT_PROG)
768 else
769 ifneq "$(HS_PROG)" ""
770 LINK_TARGET = $(HS_PROG)
771 else
772 ifneq "$(C_PROG)" ""
773 LINK_TARGET = $(C_PROG)
774 else
775 LINK_TARGET = dunno
776 endif
777 endif
778 endif
779 endif
780
781 #
782 # Don't want to overwrite $(LINK)s that aren't symbolic
783 # links. Testing for symbolic links is problematic to do in
784 # a portable fashion using a /bin/sh test, so we simply rely
785 # on perl.
786 #
787 $(LINK) : $(LINK_TARGET)
788         @if ( $(PERL) -e '$$fn="$(LINK)"; exit ((! -f $$fn || -l $$fn) ? 0 : 1);' ); then \
789            echo "Creating a symbolic link from $(LINK_TARGET) to $(LINK)"; \
790            $(RM) $(LINK); \
791            $(LN_S) $(LINK_TARGET) $(LINK); \
792          else \
793            echo "Creating a symbolic link from $(LINK_TARGET) to $(LINK) failed: \`$(LINK)' already exists"; \
794            echo "Perhaps remove \`$(LINK)' manually?"; \
795            exit 1; \
796          fi;
797
798
799 #
800 # install links to script drivers.
801 #
802 install ::
803         @$(INSTALL_DIR) $(bindir)
804         @if ( $(PERL) -e '$$fn="$(bindir)/$(LINK)"; exit ((! -f $$fn || -l $$fn) ? 0 : 1);' ); then \
805            echo "Creating a symbol link from $(LINK_TARGET) to $(LINK) in $(bindir)"; \
806            $(RM) $(bindir)/$(LINK); \
807            $(LN_S) $(LINK_TARGET) $(bindir)/$(LINK); \
808          else \
809            echo "Creating a symbol link from $(LINK_TARGET) to $(LINK) in $(bindir) failed: \`$(bindir)/$(LINK)' already exists"; \
810            echo "Perhaps remove \`$(bindir)/$(LINK)' manually?"; \
811            exit 1; \
812          fi;
813
814 endif # LINK 
815
816
817 ###########################################
818 #
819 #       Targets: install install-strip uninstall
820 #
821 ###########################################
822
823 # For each of these variables that is defined, you
824 # get one install rule
825 #
826 #       INSTALL_PROGS        executable programs in $(bindir)
827 #       INSTALL_SCRIPTS      executable scripts in $(bindir)
828 #       INSTALL_LIBS         platform-dependent libraries in $(libdir) (ranlib'ed)
829 #       INSTALL_LIB_SCRIPTS  platform-dependent scripts   in $(libdir)
830 #       INSTALL_LIBEXECS     platform-dependent execs in $(libdir)
831 #       INSTALL_DATAS        platform-independent files in $(datadir)
832 #
833 # If the installation directory variable is undefined, the install rule simply
834 # emits a suitable error message.
835 #
836 # Remember, too, that the installation directory variables ($(bindir) and
837 # friends can be overridden from their original settings in mk/config.mk.in
838 # || mk/build.mk
839 #
840 .PHONY: install install-docs installdirs install-strip install-dirs uninstall install-docs show-install
841
842 show-install :
843         @echo "bindir = $(bindir)"
844         @echo "libdir = $(libdir)"
845         @echo "libexecdir = $(libexecdir)  # by default, same as libdir"
846         @echo "datadir = $(datadir)  # unused for ghc project"
847
848 #
849 # Sometimes useful to separate out the creation of install directories 
850 # from the installation itself.
851 #
852 install-dirs ::
853         @$(INSTALL_DIR) $(bindir)
854         @$(INSTALL_DIR) $(libdir)
855         @$(INSTALL_DIR) $(libexecdir)
856         @$(INSTALL_DIR) $(datadir)
857
858 # Better do this first...
859 # but we won't for the moment, do it on-demand from
860 # within the various install targets instead.
861 #install:: install-dirs
862
863 # Install libraries automatically
864 ifneq "$(LIBRARY)" ""
865 INSTALL_LIBS  += $(LIBRARY)
866 ifeq "$(DLLized)" "YES"
867 INSTALL_PROGS += $(DLL_NAME)
868 INSTALL_LIBS += $(patsubst %.a,%_imp.a, $(LIBRARY))
869 endif
870 INSTALL_DATAS += $(HS_IFACES)
871 endif
872
873 ifneq "$(INSTALL_PROGS)" ""
874
875 #
876 # Here's an interesting one - when using the win32 version
877 # of install (provided via the cygwin toolkit), we have to
878 # supply the .exe suffix, *if* there's no other suffix.
879 #
880 # The rule below does this by ferreting out the suffix of each
881 # entry in the INSTALL_PROGS list. If there's no suffix, use
882 # $(exeext).
883
884 INSTALL_PROGS := $(foreach p, $(INSTALL_PROGS), $(addsuffix $(if $(suffix $(p)),,$(exeext)), $(basename $(p))))
885
886 install:: $(INSTALL_PROGS)
887         @$(INSTALL_DIR) $(bindir)
888         @for i in $(INSTALL_PROGS); do \
889                     echo $(INSTALL_PROGRAM) $(INSTALL_BIN_OPTS) $$i $(bindir); \
890                     $(INSTALL_PROGRAM) $(INSTALL_BIN_OPTS) $$i $(bindir) ;  \
891         done
892 endif
893
894 #
895 # Just like INSTALL_PROGS, but prefix with install sites bin/lib/data and
896 # install without stripping.
897 #
898 ifneq "$(INSTALL_SCRIPTS)" ""
899 install:: $(INSTALL_SCRIPTS)
900         @$(INSTALL_DIR) $(bindir)
901         for i in $(INSTALL_SCRIPTS); do \
902                 $(INSTALL_SCRIPT) $(INSTALL_OPTS) $$i $(bindir); \
903         done
904 endif
905
906 ifneq "$(INSTALL_LIB_SCRIPTS)" ""
907 install:: $(INSTALL_LIB_SCRIPTS)
908         @$(INSTALL_DIR) $(libdir)
909         for i in $(INSTALL_LIB_SCRIPTS); do \
910                 $(INSTALL_SCRIPT) $(INSTALL_OPTS) $$i $(libdir); \
911         done
912 endif
913
914 ifneq "$(INSTALL_LIBEXEC_SCRIPTS)" ""
915 install:: $(INSTALL_LIBEXEC_SCRIPTS)
916         @$(INSTALL_DIR) $(libexecdir)
917         for i in $(INSTALL_LIBEXEC_SCRIPTS); do \
918                 $(INSTALL_SCRIPT) $(INSTALL_OPTS) $$i $(libexecdir); \
919         done
920 endif
921
922 ifneq "$(INSTALL_LIBS)" ""
923 install:: $(INSTALL_LIBS)
924         @$(INSTALL_DIR) $(libdir)
925         for i in $(INSTALL_LIBS); do \
926                 case $$i in \
927                   *.a) \
928                     $(INSTALL_DATA) $(INSTALL_OPTS) $$i $(libdir); \
929                     $(RANLIB) $(libdir)/`basename $$i` ;; \
930                   *.dll) \
931                     $(INSTALL_DATA) -s $(INSTALL_OPTS) $$i $(libdir) ;; \
932                   *) \
933                     $(INSTALL_DATA) $(INSTALL_OPTS) $$i $(libdir); \
934                 esac; \
935         done
936 endif
937
938 ifneq "$(INSTALL_LIBEXECS)" ""
939 #
940 # See above comment next to defn of INSTALL_PROGS for what
941 # the purpose of this one-liner is.
942
943 INSTALL_LIBEXECS := $(foreach p, $(INSTALL_LIBEXECS), $(addsuffix $(subst _,,$(subst __,$(exeext),_$(suffix $(p))_)), $(basename $(p))))
944
945 install:: $(INSTALL_LIBEXECS)
946         @$(INSTALL_DIR) $(libexecdir)
947         -for i in $(INSTALL_LIBEXECS); do \
948                 $(INSTALL_PROGRAM) $(INSTALL_BIN_OPTS) $$i $(libexecdir); \
949         done
950 endif
951
952 ifneq "$(INSTALL_DATAS)" ""
953 install:: $(INSTALL_DATAS)
954         @$(INSTALL_DIR) $(datadir)
955         for i in $(INSTALL_DATAS); do \
956                 $(INSTALL_DATA) $(INSTALL_OPTS) $$i $(datadir); \
957         done
958 endif
959
960 ifneq "$(INSTALL_INCLUDES)" ""
961 install:: $(INSTALL_INCLUDES)
962         @$(INSTALL_DIR) $(includedir)
963         for i in $(INSTALL_INCLUDES); do \
964                 $(INSTALL_DATA) $(INSTALL_OPTS) $$i $(includedir); \
965         done
966 endif
967
968 ifneq "$(INSTALL_DOCS)" ""
969 install-docs:: $(INSTALL_DOCS)
970         @$(INSTALL_DIR) $(datadir)      
971         for i in $(INSTALL_DOCS); do \
972                 $(INSTALL_DATA) $(INSTALL_OPTS) $$i $(datadir); \
973         done
974 endif
975
976 ifneq "$(INSTALL_SGML_DOC)" ""
977 ifneq "$(SGMLDocWays)" ""
978 install-docs:: $(foreach i,$(SGMLDocWays),$(INSTALL_SGML_DOC).$i)
979         @$(INSTALL_DIR) $(datadir)      
980         for i in $(SGMLDocWays); do \
981                 if [ $$i = "html" ]; then \
982                         $(CP) -r $(INSTALL_SGML_DOC) $(datadir); \
983                 else \
984                         $(INSTALL_DATA) $(INSTALL_OPTS) $(INSTALL_SGML_DOC).$$i $(datadir); \
985                 fi \
986         done
987 endif
988 endif
989
990 #
991 # Use with care..
992 #
993 uninstall:: 
994         @for i in $(INSTALL_PROGS) "" ; do                      \
995           if test "$$i"; then                                   \
996                 echo rm -f $(bindir)/`basename $$i`;            \
997                 rm -f $(bindir)/`basename $$i`;                 \
998           fi;                                                   \
999         done
1000         @for i in $(INSTALL_LIBS) ""; do                        \
1001           if test "$$i"; then                                   \
1002                 echo rm -f $(libdir)/`basename $$i`;            \
1003                 rm -f $(libdir)/`basename $$i`;                 \
1004           fi;                                                   \
1005         done
1006         @for i in $(INSTALL_LIBEXECS) ""; do                    \
1007           if test "$$i"; then                                   \
1008                 echo rm -f $(libexecdir)/`basename $$i`;        \
1009                 rm -f $(libexecdir)/`basename $$i`;             \
1010           fi;                                                   \
1011         done
1012         @for i in $(INSTALL_DATAS) ""; do                       \
1013           if test "$$i"; then                                   \
1014                 echo rm -f $(datadir)/`basename $$i`;           \
1015                 rm -f $(datadir)/`basename $$i`;                \
1016           fi;                                                   \
1017         done
1018
1019 #
1020 # install-strip is from the GNU Makefile standard.
1021 #
1022 ifneq "$(way)" ""
1023 install-strip::
1024         @$(MAKE) EXTRA_INSTALL_OPTS='-s' install                                        
1025 endif
1026
1027 ##############################################################################
1028 #
1029 #       Targets: check tags show
1030 #
1031 ##############################################################################
1032
1033 #------------------------------------------------------------
1034 #                       Check
1035
1036 .PHONY: check
1037
1038 check:: $(TESTS)
1039         @for i in $(filter-out %.lhs .hs, $(TESTS)) ''; do      \
1040           if (test -f "$$i"); then              \
1041             echo Running: `basename $$i` ;      \
1042             cd test; `basename $$i` ;           \
1043           fi;                                   \
1044         done;
1045
1046 #------------------------------------------------------------
1047 #                       Tags
1048
1049 .PHONY: TAGS tags
1050
1051 tags TAGS:: $(TAGS_HS_SRCS) $(TAGS_C_SRCS)
1052         @$(RM) TAGS
1053         @touch TAGS
1054 ifneq "$(TAGS_HS_SRCS)" ""
1055         $(HSTAGS) $(HSTAGS_OPTS) -- $(TAGS_HS_SRCS)
1056 endif
1057 ifneq "$(TAGS_C_SRCS)" ""
1058         etags -a $(TAGS_C_SRCS)
1059 endif
1060         @( 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?
1061
1062 #------------------------------------------------------------
1063 #                       Makefile debugging
1064 # to see the effective value used for a Makefile variable, do
1065 #  make show VALUE=MY_VALUE
1066 #
1067
1068 show:
1069         @echo '$(VALUE)="$($(VALUE))"'
1070
1071 ################################################################################
1072 #
1073 #                       SGML Documentation
1074 #
1075 ################################################################################
1076
1077 .PHONY: dvi ps html pdf rtf
1078
1079 ifneq "$(SGML_DOC)" ""
1080
1081 all :: $(SGMLDocWays)
1082
1083 # multi-file SGML document: main document name is specified in $(SGML_DOC),
1084 # sub-documents (.sgml files) listed in $(SGML_SRCS).
1085
1086 ifeq "$(SGML_SRCS)" ""
1087 SGML_SRCS = $(wildcard *.sgml)
1088 endif
1089
1090 SGML_TEX  = $(addsuffix .tex,$(SGML_DOC))
1091 SGML_DVI  = $(addsuffix .dvi,$(SGML_DOC))
1092 SGML_PS   = $(addsuffix .ps,$(SGML_DOC))
1093 SGML_PDF  = $(addsuffix .pdf,$(SGML_DOC))
1094 SGML_RTF  = $(addsuffix .rtf,$(SGML_DOC))
1095 SGML_HTML = $(addsuffix .html,$(SGML_DOC))
1096 # HTML output goes in a subdirectory on its own.
1097 SGML_TEXT = $(addsuffix .txt,$(SGML_DOC))
1098
1099 $(SGML_DVI) $(SGML_PS) $(SGML_HTML) $(SGML_TEXT) $(SGML_PDF) :: $(SGML_SRCS)
1100
1101 dvi  :: $(SGML_DVI)
1102 ps   :: $(SGML_PS)
1103 pdf  :: $(SGML_PDF)
1104 rtf  :: $(SGML_RTF)
1105 html :: $(SGML_HTML)
1106 txt  :: $(SGML_TEXT)
1107
1108 CLEAN_FILES += $(SGML_TEXT) $(SGML_TEX) $(SGML_PS) $(SGML_DVI) $(SGML_PDF) $(SGML_RTF) $(SGML_HTML) $(SGML_DOC)-*.html
1109 # can't use $(SGML_SRCS) here, it was maybe used elsewhere
1110
1111 extraclean ::
1112         $(RM) -rf DBTOHTML_OUTPUT_*
1113         $(RM) -rf *.junk/
1114         $(RM) -rf $(SGML_DOC)
1115 endif
1116
1117 ##############################################################################
1118 #
1119 #       Targets: clean
1120 #
1121 ##############################################################################
1122
1123 # we have to be careful about recursion here; since all the clean
1124 # targets are recursive, we don't want to make eg. distclean depend on
1125 # clean because that would result in far too many recursive calls.
1126
1127 .PHONY: mostlyclean clean distclean maintainer-clean
1128
1129 mostlyclean::
1130         rm -f $(MOSTLY_CLEAN_FILES)
1131
1132 # extraclean is used for adding actions to the clean target.
1133 extraclean::
1134
1135 clean:: extraclean
1136         rm -f $(MOSTLY_CLEAN_FILES) $(CLEAN_FILES)
1137
1138 distclean:: extraclean
1139         rm -f $(MOSTLY_CLEAN_FILES) $(CLEAN_FILES) $(DIST_CLEAN_FILES)
1140
1141 maintainer-clean:: extraclean
1142         @echo 'This command is intended for maintainers to use; it'
1143         @echo 'deletes files that may need special tools to rebuild.'
1144         rm -f $(MOSTLY_CLEAN_FILES) $(CLEAN_FILES) $(DIST_CLEAN_FILES) $(MAINTAINER_CLEAN_FILES)
1145
1146 ################################################################################
1147 #
1148 #                       Way management
1149 #
1150 ################################################################################
1151
1152 # Here is the ingenious jiggery pokery that allows you to build multiple versions
1153 # of a program in a single build tree.
1154 #
1155 # The ways setup requires the following variables to be set:
1156 #
1157 # Expects:      $(WAYS)                 the possible "way" strings to one of 
1158 #                                       which $(way) will be set
1159
1160
1161 # So how does $(way) ever get set to anything?  Answer, we recursively
1162 # invoke make, setting $(way) on the command line.
1163 # When do we do this recursion?  Answer: whenever the programmer
1164 # asks make to make a target that involves a way suffix.
1165 # We must remember *not* to recurse again; but that's easy: we
1166 # just see if $(way) is set:
1167
1168 ifeq "$(way)" ""
1169
1170 # If $(WAYS) = p mc, then WAY_TARGETS expands to
1171 #       %.p_lhs %.p_hs %.p_o ... %.mc_lhs %.p_hs ...
1172 # and OTHER_WAY_TARGETS to
1173 #       %_p.a %_p %_mc.a %_mc
1174 # where the suffixes are from $(SUFFIXES)
1175 #
1176 # We have to treat libraries and "other" targets differently, 
1177 # because their names are of the form
1178 #       libHS_p.a and Foo_p
1179 # whereas everything else has names of the form
1180 #       Foo.p_o
1181
1182 FPTOOLS_SUFFIXES := o hi hc
1183
1184 WAY_TARGETS     = $(foreach way,$(WAYS),$(foreach suffix, $(FPTOOLS_SUFFIXES), %.$(way)_$(suffix)))
1185 LIB_WAY_TARGETS = $(foreach way,$(WAYS),%_$(way).a %_$(way))
1186
1187 # $@ will be something like Foo.p_o
1188 # $(suffix $@)     returns .p_o
1189 # $(subst .,.p_o)  returns p_o
1190 # $(subst _,.,p_o) returns p.o   (clever)
1191 # $(basename p.o)  returns p
1192
1193 $(WAY_TARGETS) :
1194         $(MAKE) way=$(basename $(subst _,.,$(subst .,,$(suffix $@)))) $@
1195
1196 # $(@F) will be something like libHS_p.a, or Foo_p
1197 # $(basename $(@F)) will be libHS_p, or Foo_p
1198 # The sed script extracts the "p" part.
1199
1200 $(LIB_WAY_TARGETS) :
1201         $(MAKE) $(MFLAGS) $@ way=$(subst .,,$(suffix $(subst _,.,$(basename $@))))
1202
1203 endif   # if way
1204
1205 # -------------------------------------------------------------------------
1206 # Object and interface files have suffixes tagged with their ways
1207
1208 ifneq "$(way)" ""
1209 SRC_HC_OPTS += -hisuf $(way_)hi -hcsuf $(way_)hc -osuf $(way_)o
1210 endif
1211
1212 # -------------------------------------------------------------------------
1213 # Rules to invoke the current target recursively for each way
1214
1215 ifneq "$(WAYS)" ""
1216 ifeq "$(way)" ""
1217
1218 # NB: the targets exclude 
1219 #       boot runtests
1220 # since these are way-independent
1221 all docs TAGS clean distclean mostlyclean maintainer-clean install ::
1222         @echo "------------------------------------------------------------------------"
1223         @echo "===fptools== Recursively making \`$@' for ways: $(WAYS) ..."
1224         @echo "PWD = $(shell pwd)"
1225         @echo "------------------------------------------------------------------------"
1226 # Don't rely on -e working, instead we check exit return codes from sub-makes.
1227         @case '${MFLAGS}' in *-[ik]*) x_on_err=0;; *-r*[ik]*) x_on_err=0;; *) x_on_err=1;; esac; \
1228         for i in $(WAYS) ; do \
1229           echo "------------------------------------------------------------------------"; \
1230           echo "==fptools== $(MAKE) way=$$i $@;"; \
1231           echo "PWD = $(shell pwd)"; \
1232           echo "------------------------------------------------------------------------"; \
1233           $(MAKE) way=$$i --no-print-directory $(MFLAGS) $@ ; \
1234           if [ $$? -eq 0 ] ; then true; else exit $$x_on_err; fi; \
1235         done
1236         @echo "------------------------------------------------------------------------"
1237         @echo "===fptools== Finished recursively making \`$@' for ways: $(WAYS) ..."
1238         @echo "PWD = $(shell pwd)"
1239         @echo "------------------------------------------------------------------------"
1240
1241 endif
1242 endif