Add several new record features
[ghc-hetmet.git] / mk / target.mk
1 #################################################################################
2 #
3 #                       target.mk
4 #
5 #               Standard targets for GHC
6 #
7 #################################################################################
8
9 #
10 # This file contain three groups of target rules:
11 #
12 # 1.  GHC targets
13 #       depend*
14 #       runtests*
15 #
16 # 2.  GNU standard targets
17 #       all*
18 #       install* installcheck installdirs
19 #       install-docs*
20 #       clean* distclean* mostlyclean* maintainer-clean*
21 #       tags*
22 #       dvi ps (no info) GHC adds: pdf rtf html chm HxS
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 # Pre-compute the list of sources so we don't have to do this 
38 # multiple times.  See paths.mk.
39
40 PRE_SRCS := $(ALL_SRCS)
41
42 ###################################################################
43 # Suffix rules for Haskell, C and literate 
44
45 include $(TOP)/mk/suffix.mk
46
47 ##################################################################
48 #               GHC standard targets
49 #
50 # depend:
51 #
52 #  The depend target has to cope with a set of files that may have
53 #  different ways of computing their dependencies, i.e., a Haskell
54 #  module's dependencies are computed differently from C files.
55 #
56 # Note that we don't compute dependencies automatically, i.e., have the
57 # .depend file be a target that is dependent on the Haskell+C sources,
58 # and then have the `depend' target depend on `.depend'. The reason for
59 # this is that when GNU make is processing the `include .depend' statement
60 # it records .depend as being a Makefile. Before doing any other processing,
61 # `make' will try to check to see if the Makefiles are up-to-date. And,
62 # surprisingly enough, .depend has a rule for it, so if any of the source
63 # files change, it will be invoked, *regardless* of what target you're making.
64 #
65 # So, for now, the dependencies has to be re-computed manually via `make depend'
66 # whenever a module changes its set of imports. Doing what was outlined above
67 # is only a small optimisation anyway, it would avoid the recomputation of
68 # dependencies if the .depend file was newer than any of the source modules.
69 #
70 .PHONY: depend
71
72 # Compiler produced files that are targets of the source's imports.
73 MKDEPENDHS_OBJ_SUFFICES=o
74
75 ifneq "$(BootingFromHc)" "YES"
76 PKGCONF_DEP = $(STAMP_PKG_CONF)
77 endif
78
79 depend :: $(MKDEPENDHS_SRCS) $(MKDEPENDC_SRCS) $(PKGCONF_DEP)
80         @$(RM) .depend
81         @touch .depend
82 ifneq "$(DOC_SRCS)" ""
83         $(MKDEPENDLIT) -o .depend $(MKDEPENDLIT_OPTS) $(filter %.lit,$(DOC_SRCS))
84 endif
85 ifneq "$(MKDEPENDC_SRCS)" ""
86         $(MKDEPENDC) -f .depend $(MKDEPENDC_OPTS) $(foreach way,$(WAYS),-s $(way)) -- $(CC_OPTS) -- $(MKDEPENDC_SRCS) 
87 endif
88 ifneq "$(MKDEPENDHS_SRCS)" ""
89         $(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)
90 endif
91
92
93 ##################################################################
94 #                       boot
95 #
96 #  The boot target, at a minimum generates dependency information
97
98 .PHONY: boot
99
100 ifeq "$(NO_BOOT_TARGET)" "YES"
101 boot ::
102 else
103 boot :: depend
104 endif
105
106 ##################################################################
107 #               GNU Standard targets
108 #
109 #       Every Makefile should define the following targets
110
111 # `all'
112 #      Compile the entire program. This should be the default target.
113 #      This target need not rebuild any documentation files
114
115 # `install'
116 #      Compile the program and copy the executables, libraries, and so on
117 #      to the file names where they should reside for actual use. If
118 #      there is a simple test to verify that a program is properly
119 #      installed, this target should run that test.
120
121 #      The commands should create all the directories in which files are
122 #      to be installed, if they don't already exist. This includes the
123 #      directories specified as the values of the variables prefix and
124 #      exec_prefix , as well as all subdirectories that are needed. One
125 #      way to do this is by means of an installdirs target as described
126 #      below.
127
128 #      Use `-' before any command for installing a man page, so that make
129 #      will ignore any errors.  This is in case there are systems that
130 #      don't have the Unix man page documentation system installed.
131
132 # `clean'
133
134 #      Delete all files from the current directory that are normally
135 #      created by building the program.  Don't delete the files that
136 #      record the configuration. Also preserve files that could be made
137 #      by building, but normally aren't because the distribution comes
138 #      with them.
139
140 #      Delete `.dvi' files here if they are not part of the
141 #      distribution.
142
143 # `distclean'
144 #      Delete all files from the current directory that are created by
145 #      configuring or building the program. If you have unpacked the
146 #      source and built the program without creating any other files,
147 #      `make distclean' should leave only the files that were in the
148 #      distribution.
149
150 # `mostlyclean'
151 #      Like `clean', but may refrain from deleting a few files that
152 #      people normally don't want to recompile. For example, the
153 #      `mostlyclean' target for GCC does not delete `libgcc.a', because
154 #      recompiling it is rarely necessary and takes a lot of time.
155
156 # `maintainer-clean'
157 #      Delete everything from the current directory that can be
158 #      reconstructed with this Makefile.  This typically includes
159 #      everything deleted by distclean , plus more: C source files
160 #      produced by Bison, tags tables, and so on.
161
162 #      One exception, however: `make maintainer-clean' should not delete
163 #      `configure' even if `configure' can be remade using a rule in the
164 #      Makefile. More generally, `make maintainer-clean' should not delete
165 #      anything that needs to exist in order to run `configure' and then
166 #      begin to build the program.
167
168 # `TAGS'
169 #      Update a tags table for this program.
170
171 # `dvi' `ps' `pdf' `html' `chm' `HxS' `rtf' 
172 #      Generate DVI/PS/PDF files for LaTeX/DocBook docs. Not everything is
173 #      supported everywhere, but the intention is to standardise on DocBook
174 #      producing all formats.
175 #
176 # `check'
177 #      Perform self-tests (if any). The user must build the program
178 #      before running the tests, but need not install the program; you
179 #      should write the self-tests so that they work when the program is
180 #      built but not installed.
181
182 # The following targets are suggested as conventional names, for programs
183 # in which they are useful.
184
185 # installcheck
186 #      Perform installation tests (if any). The user must build and
187 #      install the program before running the tests. You should not
188 #      assume that `$(bindir)' is in the search path.
189
190 # installdirs
191 #      It's useful to add a target named `installdirs' to create the
192 #      directories where files are installed, and their parent
193 #      directories. There is a script called `mkinstalldirs' which is
194 #      convenient for this; find it in the Texinfo package.
195 #      (GHC: we use a close relative of the suggested script, situated
196 #       in glafp-utils/mkdirhier -- SOF)
197
198
199
200
201 ###########################################
202 #
203 #       Targets: "all"
204 #
205 ###########################################
206
207 # For each of these variables that is defined
208 # we generate one "all" rule and one rule for the variable itself:
209 #
210 #       HS_PROG         Haskell program
211 #       C_PROG          C program
212 #       LIBRARY         Library
213 #
214 # For details of exactly what rule is generated, see the
215 # relevant section below
216
217 .PHONY: all
218
219 #----------------------------------------
220 #       Haskell programs
221
222 ifneq "$(HS_PROG)" ""
223 all :: $(HS_PROG)
224
225 ifneq "$(BootingFromHc)" "YES"
226 $(HS_PROG) :: $(OBJS)
227         $(HC) -o $@ $(HC_OPTS) $(LD_OPTS) $(OBJS)
228 else
229 # see bootstrap.mk
230 $(HS_PROG) :: $(OBJS)
231         $(CC) -o $@ $(HC_BOOT_CC_OPTS) $(HC_BOOT_LD_OPTS) $(OBJS) $(HC_BOOT_LIBS)
232 endif
233 endif
234
235 #----------------------------------------
236 #       C programs
237
238 ifneq "$(C_PROG)" ""
239 all :: $(C_PROG)
240
241 $(C_PROG) :: $(C_OBJS)
242         $(CC) -o $@ $(CC_OPTS) $(LD_OPTS) $(C_OBJS) $(LIBS)
243 endif
244
245 #----------------------------------------
246 #       Libraries/archives
247 #
248 # Build $(LIBRARY) from $(LIBOBJS)+$(STUBOBJS)
249 #
250 # Inputs:
251 #   $(LIBOBJS)
252 #   $(STUBOBJS)
253 #
254 # Outputs:
255 #   Rule to build $(LIBRARY)
256
257 ifneq "$(LIBRARY)" ""
258 all :: $(LIBRARY)
259
260 ifneq "$(way)" "i"
261 define BUILD_LIB
262 $(RM) $@
263 $(AR) $(AR_OPTS) $@ $(STUBOBJS) $(LIBOBJS)
264 $(RANLIB) $@
265 endef
266 else
267 define BUILD_LIB
268 $(RM) $@
269 al -out:$@ $(STUBOBJS) $(LIBOBJS)
270 endef
271 endif
272
273 #
274 # For Haskell object files, we might have chosen to split
275 # up the object files. Test for whether the library being
276 # built is consisting of Haskell files by (hackily) checking
277 # whether HS_SRCS is empty or not.
278 #
279
280 # can't split objs in way 'u', so we disable it here
281 ifeq "$(way)" "u"
282 SplitObjs = NO
283 endif
284
285 ifneq "$(HS_SRCS)" ""
286 ifeq "$(SplitObjs)" "YES"
287
288 SRC_HC_OPTS += -split-objs
289
290 # We generate the archive into a temporary file libfoo.a.tmp, then
291 # rename it at the end.  This avoids the problem that ar may sometimes
292 # fail, leaving a partially built archive behind.
293 ifeq "$(ArSupportsInput)" ""
294 define BUILD_LIB
295 $(RM) $@ $@.tmp
296 (echo $(STUBOBJS) $(C_OBJS) $(GC_C_OBJS); $(FIND) $(patsubst %.$(way_)o,%_split,$(HS_OBJS)) -name '*.$(way_)o' -print) | xargs $(AR) $@
297 $(RANLIB) $@
298 endef
299 else
300 define BUILD_LIB
301 $(RM) $@ $@.tmp
302 echo $(STUBOBJS) > $@.list
303 echo $(C_OBJS) >> $@.list
304 echo $(GC_C_OBJS) >> $@.list
305 $(FIND) $(patsubst %.$(way_)o,%_split,$(HS_OBJS)) -name '*.$(way_)o' -print >> $@.list
306 $(AR) $(AR_OPTS) $@ $(ArSupportsInput) $@.list
307 $(RM) $@.list
308 $(RANLIB) $@
309 endef
310 endif
311
312 # Extra stuff for compiling Haskell files with $(SplitObjs):
313
314 #
315 # If (Haskell) object files are split, cleaning up 
316 # consist of descending into the directories where
317 # the myriads of object files have been put.
318 #
319
320 extraclean ::
321         $(FIND) $(patsubst %.$(way_)o,%_split,$(HS_OBJS)) -name '*.$(way_)o' -print -o -name ld.script -print | xargs $(RM) __rm_food
322         -rmdir $(patsubst %.$(way_)o,%_split,$(HS_OBJS)) > /dev/null 2>&1
323
324 endif # $(SplitObjs)
325 endif # $(HS_SRCS)
326
327 #
328 # Remove local symbols from library objects if requested.
329 #
330
331 ifeq "$(StripLibraries)" "YES"
332 ifeq "$(SplitObjs)" "YES"
333 SRC_HC_POST_OPTS += \
334   for i in $(basename $@)_split/*.$(way_)o; do \
335         $(LD) -r $(LD_X) -o $$i.tmp $$i; \
336         $(MV) $$i.tmp $$i; \
337   done
338 else
339 SRC_HC_POST_OPTS += \
340   $(LD) -r $(LD_X) -o $@.tmp $@; $(MV) $@.tmp $@
341 endif # SplitObjs
342 endif # StripLibraries
343
344 # Note: $(STUBOBJS) isn't depended on here, but included when building the lib.
345 #       (i.e., the assumption is that $(STUBOBJS) are created as a side-effect
346 #       of building $(LIBOBJS)).
347 $(LIBRARY) : $(LIBOBJS)
348         $(BUILD_LIB)
349 endif # LIBRARY = ""
350
351 #----------------------------------------
352 #       Building Win32 DLLs
353 #
354
355 ifeq "$(DLLized)" "YES"
356 SRC_CC_OPTS += -DDLLized
357
358 ifneq "$(PACKAGE)" ""
359
360 SRC_BLD_DLL_OPTS += --export-all --output-def=HS$(PACKAGE)$(_cbits)$(_way).def DllVersionInfo.$(way_)o
361
362 ifneq "$(PACKAGE) $(IS_CBITS_LIB)" "std YES"
363 ifneq "$(PACKAGE)" "rts"
364 SRC_BLD_DLL_OPTS += -lHSstd_cbits_imp -L$(GHC_LIB_DIR)/std/cbits
365 SRC_BLD_DLL_OPTS += -lHSrts_$(way_)imp -L$(GHC_RTS_DIR)
366 ifneq "$(PACKAGE)" "std"
367   ifeq "$(IS_CBITS_LIB)" ""
368   SRC_BLD_DLL_OPTS += -lHSstd_$(way_)imp -L$(GHC_LIB_DIR)/std 
369   endif
370 endif
371 endif
372 endif
373
374 SRC_BLD_DLL_OPTS += -lgmp -L. -L$(GHC_RTS_DIR)/gmp
375 ifeq "$(IS_CBITS_LIB)" ""
376 SRC_BLD_DLL_OPTS += $(patsubst %,-lHS%_$(way_)imp, $(PACKAGE_DEPS))
377 SRC_BLD_DLL_OPTS += $(patsubst %,-L../%, $(PACKAGE_DEPS))
378 endif
379 ifneq "$(HAS_CBITS)" ""
380 SRC_BLD_DLL_OPTS += -lHS$(PACKAGE)_cbits_imp -Lcbits
381 endif
382 SRC_BLD_DLL_OPTS += -lwsock32 -lwinmm
383
384 endif # PACKAGE != ""
385
386 SplitObjs = NO 
387
388 ifneq "$(LIBRARY)" ""
389
390 all :: DllVersionInfo.$(way_)o
391
392 ifeq "$(DLL_NAME)" ""
393 DLL_NAME = $(patsubst %.a,%.dll,$(subst lib,,$(LIBRARY)))
394 endif
395
396 ifneq "$(DLL_NAME)" ""
397 DLL_NAME := $(DLL_PEN)/$(DLL_NAME)
398 endif
399
400 all :: $(DLL_NAME)
401
402 ifeq "$(DLL_IMPLIB_NAME)" ""
403 DLL_IMPLIB_NAME = $(patsubst %.a,%_imp.a,$(LIBRARY))
404 endif
405
406 $(DLL_NAME) :: $(LIBRARY)
407         $(BLD_DLL) --output-lib $(DLL_IMPLIB_NAME) -o $(DLL_NAME) $(LIBRARY) $(BLD_DLL_OPTS)
408 endif # LIBRARY != ""
409
410 endif # DLLized
411
412 #
413 # Version information is baked into a DLL by having the DLL include DllVersionInfo.o.
414 # The version info contains two user tweakables: DLL_VERSION and DLL_VERSION_NAME.
415 # (both are given sensible defaults though.)
416 #
417 # Note: this will not work as expected with Cygwin B20.1; you need a more recent
418 #       version of binutils (to pick up windres bugfixes.)
419
420 ifndef DLL_VERSION
421 DLL_VERSION=$(ProjectVersion)
422 endif
423
424 ifndef DLL_VERSION_NAME
425 DLL_VERSION_NAME="http://www.haskell.org/ghc"
426 endif
427
428 ifndef DLL_DESCRIPTION
429 DLL_DESCRIPTION="A GHC-compiled DLL"
430 endif
431
432 ifndef EXE_VERSION
433 EXE_VERSION=$(ProjectVersion)
434 endif
435
436 ifndef EXE_VERSION_NAME
437 EXE_VERSION_NAME="http://www.haskell.org/ghc"
438 endif
439
440 ifndef EXE_DESCRIPTION
441 EXE_DESCRIPTION="A GHC-compiled binary"
442 endif
443
444 #
445 # Little bit of lo-fi mangling to get at the right set of settings depending
446 # on whether we're generating the VERSIONINFO for a DLL or EXE
447
448 DLL_OR_EXE=$(subst VersionInfo.$(way_)rc,,$@)
449 VERSION_FT=$(subst Dll, 0x2L, $(subst Exe, 0x1L, $(DLL_OR_EXE)))
450 VERSION_RES_NAME=$(subst Exe,$(EXE_VERSION_NAME), $(subst Dll, $(DLL_VERSION_NAME),$(DLL_OR_EXE)))
451 VERSION_RES=$(subst Exe,$(EXE_VERSION), $(subst Dll, $(DLL_VERSION),$(DLL_OR_EXE)))
452 VERSION_DESC=$(subst Exe,$(EXE_DESCRIPTION), $(subst Dll, $(DLL_DESCRIPTION),$(DLL_OR_EXE)))
453
454 DllVersionInfo.$(way_)rc ExeVersionInfo.$(way_)rc:
455         $(RM) DllVersionInfo.$(way_)rc
456         echo "1 VERSIONINFO"                > $@
457         echo "FILEVERSION 1,0,0,1"         >> $@
458         echo "PRODUCTVERSION 1,0,0,1"      >> $@
459         echo "FILEFLAGSMASK 0x3fL"         >> $@
460         echo "FILEOS 0x4L"                 >> $@
461         echo "FILETYPE $(VERSION_FT)"      >> $@
462         echo "FILESUBTYPE 0x0L"            >> $@
463         echo "BEGIN"                       >> $@
464         echo " BLOCK \"StringFileInfo\""   >> $@
465         echo " BEGIN"                      >> $@
466         echo "  BLOCK \"040904B0\""        >> $@
467         echo "  BEGIN"                     >> $@
468         echo "   VALUE \"CompanyName\", \"$(VERSION_RES_NAME)\\0\"" >> $@
469         echo "   VALUE \"FileVersion\", \"$(VERSION_RES)\\0\"" >> $@
470         echo "   VALUE \"ProductVersion\", \"$(VERSION_RES)\\0\"" >> $@
471         echo "   VALUE \"FileDescription\", \"$(VERSION_DESC)\\0\"" >> $@
472         echo "  END" >> $@
473         echo " END" >> $@
474         echo " BLOCK \"VarFileInfo\""  >> $@
475         echo " BEGIN" >> $@
476         echo "  VALUE \"Translation\", 0x0409, 1200" >> $@
477         echo " END" >> $@
478         echo "END" >> $@
479
480 include $(TOP)/mk/install.mk
481
482 ##############################################################################
483 #
484 #       Targets: check tags show
485 #
486 ##############################################################################
487
488 #------------------------------------------------------------
489 #                       Check
490
491 .PHONY: check
492
493 check:: $(TESTS)
494         @for i in $(filter-out %.lhs .hs, $(TESTS)) ''; do      \
495           if (test -f "$$i"); then              \
496             echo Running: `basename $$i` ;      \
497             cd test; `basename $$i` ;           \
498           fi;                                   \
499         done;
500
501 #------------------------------------------------------------
502 #                       Tags
503
504 .PHONY: TAGS tags
505
506 tags TAGS:: $(TAGS_HS_SRCS) $(TAGS_C_SRCS)
507         @$(RM) TAGS
508         @touch TAGS
509 ifneq "$(TAGS_HS_SRCS)" ""
510         $(HSTAGS) $(HSTAGS_OPTS) $(TAGS_HS_SRCS)
511 endif
512 ifneq "$(TAGS_C_SRCS)" ""
513         etags -a $(TAGS_C_SRCS)
514 endif
515         @( 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?
516
517 #------------------------------------------------------------
518 #                       Makefile debugging
519 # to see the effective value used for a Makefile variable, do
520 #  make show VALUE=MY_VALUE
521 #
522
523 show:
524         @echo '$(VALUE)="$($(VALUE))"'
525
526 ################################################################################
527 #
528 #                       DocBook XML Documentation
529 #
530 ################################################################################
531
532 .PHONY: html html-no-chunks chm HxS fo dvi ps pdf
533
534 ifneq "$(XML_DOC)" ""
535
536 all :: $(XMLDocWays)
537
538 # multi-file XML document: main document name is specified in $(XML_DOC),
539 # sub-documents (.xml files) listed in $(XML_SRCS).
540
541 ifeq "$(XML_SRCS)" ""
542 XML_SRCS = $(wildcard *.xml)
543 endif
544
545 XML_HTML           = $(addsuffix /index.html,$(basename $(XML_DOC)))
546 XML_HTML_NO_CHUNKS = $(addsuffix .html,$(XML_DOC))
547 XML_CHM            = $(addsuffix .chm,$(XML_DOC))
548 XML_HxS            = $(addsuffix .HxS,$(XML_DOC))
549 XML_FO             = $(addsuffix .fo,$(XML_DOC))
550 XML_DVI            = $(addsuffix .dvi,$(XML_DOC))
551 XML_PS             = $(addsuffix .ps,$(XML_DOC))
552 XML_PDF            = $(addsuffix .pdf,$(XML_DOC))
553
554 $(XML_HTML) $(XML_NO_CHUNKS_HTML) $(XML_FO) $(XML_DVI) $(XML_PS) $(XML_PDF) :: $(XML_SRCS)
555
556 html           :: $(XML_HTML)
557 html-no-chunks :: $(XML_HTML_NO_CHUNKS)
558 chm            :: $(XML_CHM)
559 HxS            :: $(XML_HxS)
560 fo             :: $(XML_FO)
561 dvi            :: $(XML_DVI)
562 ps             :: $(XML_PS)
563 pdf            :: $(XML_PDF)
564
565 CLEAN_FILES += $(XML_HTML_NO_CHUNKS) $(XML_FO) $(XML_DVI) $(XML_PS) $(XML_PDF)
566
567 extraclean ::
568         $(RM) -rf $(XML_DOC).out $(FPTOOLS_CSS) $(basename $(XML_DOC)) $(basename $(XML_DOC))-htmlhelp
569
570 validate ::
571         $(XMLLINT) --valid --noout $(XMLLINT_OPTS) $(XML_DOC).xml
572 endif
573
574 ##############################################################################
575 #
576 #       Targets: clean
577 #
578 ##############################################################################
579
580 # we have to be careful about recursion here; since all the clean
581 # targets are recursive, we don't want to make eg. distclean depend on
582 # clean because that would result in far too many recursive calls.
583
584 .PHONY: mostlyclean clean distclean maintainer-clean
585
586 mostlyclean::
587         rm -f $(MOSTLY_CLEAN_FILES)
588
589 # extraclean is used for adding actions to the clean target.
590 extraclean::
591
592 clean:: extraclean
593         rm -f $(MOSTLY_CLEAN_FILES) $(CLEAN_FILES)
594
595 distclean:: extraclean
596         rm -f $(MOSTLY_CLEAN_FILES) $(CLEAN_FILES) $(DIST_CLEAN_FILES)
597
598 maintainer-clean:: extraclean
599         @echo 'This command is intended for maintainers to use; it'
600         @echo 'deletes files that may need special tools to rebuild.'
601         rm -f $(MOSTLY_CLEAN_FILES) $(CLEAN_FILES) $(DIST_CLEAN_FILES) $(MAINTAINER_CLEAN_FILES)
602
603 ################################################################################
604 #
605 #                       Way management
606 #
607 ################################################################################
608
609 # Here is the ingenious jiggery pokery that allows you to build multiple versions
610 # of a program in a single build tree.
611 #
612 # The ways setup requires the following variables to be set:
613 #
614 # Expects:      $(WAYS)                 the possible "way" strings to one of 
615 #                                       which $(way) will be set
616
617 ifneq "$(way)" ""
618 ifeq "$(findstring $(way), $(WAYS))" ""
619 $(error Unknown way $(way))
620 endif
621 endif
622
623 # So how does $(way) ever get set to anything?  Answer, we recursively
624 # invoke make, setting $(way) on the command line.
625 # When do we do this recursion?  Answer: whenever the programmer
626 # asks make to make a target that involves a way suffix.
627 # We must remember *not* to recurse again; but that's easy: we
628 # just see if $(way) is set:
629
630 ifeq "$(way)" ""
631
632 # If $(WAYS) = p mc, then WAY_TARGETS expands to
633 #       %.p_lhs %.p_hs %.p_o ... %.mc_lhs %.p_hs ...
634 # and OTHER_WAY_TARGETS to
635 #       %_p.a %_p %_mc.a %_mc
636 # where the suffixes are from $(SUFFIXES)
637 #
638 # We have to treat libraries and "other" targets differently, 
639 # because their names are of the form
640 #       libHS_p.a and Foo_p
641 # whereas everything else has names of the form
642 #       Foo.p_o
643
644 FPTOOLS_SUFFIXES := o hi hc
645
646 WAY_TARGETS     = $(foreach way,$(WAYS),$(foreach suffix, $(FPTOOLS_SUFFIXES), %.$(way)_$(suffix)))
647 LIB_WAY_TARGETS = $(foreach way,$(WAYS),%_$(way).a %_$(way))
648
649 # $@ will be something like Foo.p_o
650 # $(suffix $@)     returns .p_o
651 # $(subst .,.p_o)  returns p_o
652 # $(subst _,.,p_o) returns p.o   (clever)
653 # $(basename p.o)  returns p
654
655 $(WAY_TARGETS) :
656         $(MAKE) way=$(basename $(subst _,.,$(subst .,,$(suffix $@)))) $@
657
658 # $(@F) will be something like libHS_p.a, or Foo_p
659 # $(basename $(@F)) will be libHS_p, or Foo_p
660 # The sed script extracts the "p" part.
661
662 $(LIB_WAY_TARGETS) :
663         $(MAKE) $(MFLAGS) $@ way=$(subst .,,$(suffix $(subst _,.,$(basename $@))))
664
665 endif   # if way
666
667 # -------------------------------------------------------------------------
668 # Object and interface files have suffixes tagged with their ways
669
670 ifneq "$(way)" ""
671 SRC_HC_OPTS += -hisuf $(way_)hi -hcsuf $(way_)hc -osuf $(way_)o
672 endif
673
674 # -------------------------------------------------------------------------
675 # Rules to invoke the current target recursively for each way
676
677 ifneq "$(strip $(WAYS))" ""
678 ifeq "$(way)" ""
679
680 # NB: the targets exclude 
681 #       boot runtests
682 # since these are way-independent
683 all docs TAGS clean distclean mostlyclean maintainer-clean install ::
684         @echo "------------------------------------------------------------------------"
685         @echo "== Recursively making \`$@' for ways: $(WAYS) ..."
686         @echo "PWD = $(shell pwd)"
687         @echo "------------------------------------------------------------------------"
688 # Don't rely on -e working, instead we check exit return codes from sub-makes.
689         case '${MFLAGS}' in *-[ik]*) x_on_err=0;; *-r*[ik]*) x_on_err=0;; *) x_on_err=1;; esac; \
690         for i in $(WAYS) ; do \
691           echo "------------------------------------------------------------------------"; \
692           echo "== $(MAKE) way=$$i $@;"; \
693           echo "PWD = $(shell pwd)"; \
694           echo "------------------------------------------------------------------------"; \
695           $(MAKE) way=$$i --no-print-directory $(MFLAGS) $@ ; \
696           if [ $$? -eq 0 ] ; then true; else exit $$x_on_err; fi; \
697         done
698         @echo "------------------------------------------------------------------------"
699         @echo "== Finished recursively making \`$@' for ways: $(WAYS) ..."
700         @echo "PWD = $(shell pwd)"
701         @echo "------------------------------------------------------------------------"
702
703 endif
704 endif
705
706 include $(TOP)/mk/recurse.mk
707
708 # -----------------------------------------------------------------------------
709 # Further cleaning
710
711 # Sometimes we want to clean things only after the recursve cleaning
712 # has heppened (eg. if the files we're about to remove would affect
713 # the recursive traversal).
714
715 distclean::
716         rm -f $(LATE_DIST_CLEAN_FILES)
717
718 maintainer-clean::
719         rm -f $(LATE_DIST_CLEAN_FILES)
720