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