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