[project @ 1998-01-12 14:15:04 by simonm]
[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 #       clean* distclean* mostlyclean* maintainer-clean*
20 #       tags*
21 #       info dvi ps
22 #       dist binary-dist
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 #               FPtools standard targets
39 #
40 # depend:
41 #
42 #  The depend target has to cope with a set of files that may have
43 #  different ways of computing their dependencies, i.e., a Haskell
44 #  module's dependencies are computed differently from C files.
45 #
46 # Note that we don't compute dependencies automatically, i.e., have the
47 # .depend file be a target that is dependent on the Haskell+C sources,
48 # and then have the `depend' target depend on `.depend'. The reason for
49 # this is that when GNU make is processing the `include .depend' statement
50 # it records .depend as being a Makefile. Before doing any other processing,
51 # `make' will try to check to see if the Makefiles are up-to-date. And,
52 # surprisingly enough, .depend has a rule for it, so if any of the source
53 # files change, it will be invoked, *regardless* of what target you're making.
54 #
55 # So, for now, the dependencies has to be re-computed manually via `make depend'
56 # whenever a module changes its set of imports. Doing what was outlined above
57 # is only a small optimisation anyway, it would avoid the recomputation of
58 # dependencies if the .depend file was newer than any of the source modules.
59 #
60 .PHONY: depend
61
62 # Compiler produced files that are targets of the source's imports.
63 MKDEPENDHS_OBJ_SUFFICES=o
64
65 depend :: $(MKDEPENDHS_SRCS) $(MKDEPENDC_SRCS)
66         @$(RM) .depend
67         @touch .depend
68 ifneq "$(DOC_SRCS)" ""
69         $(MKDEPENDLIT) -o .depend $(MKDEPENDLIT_OPTS) $(filter %.lit,$(DOC_SRCS))
70 endif
71 ifneq "$(MKDEPENDC_SRCS)" ""
72         $(MKDEPENDC) -f .depend $(MKDEPENDC_OPTS) -- $(CC_OPTS) -- $(MKDEPENDC_SRCS)
73 endif
74 ifneq "$(MKDEPENDHS_SRCS)" ""
75         @if ( echo $(notdir $(MKDEPENDHS)) | grep ghc >/dev/null 2>&1 ); then \
76            echo $(MKDEPENDHS) -M -optdep-f -optdep.depend $(foreach way,$(WAYS),-optdep-s -optdep$(way)) $(foreach obj,$(MKDEPENDHS_OBJ_SUFFICES),-optdep-o -optdep$(obj)) $(MKDEPENDHS_OPTS) $(HC_OPTS) $(MKDEPENDHS_SRCS) ; \
77            $(MKDEPENDHS) -M -optdep-f -optdep.depend $(foreach way,$(WAYS),-optdep-s -optdep$(way)) $(foreach obj,$(MKDEPENDHS_OBJ_SUFFICES),-optdep-o -optdep$(obj)) $(MKDEPENDHS_OPTS) $(HC_OPTS) $(MKDEPENDHS_SRCS) ; \
78         else \
79            echo $(MKDEPENDHS) -f .depend $(MKDEPENDHS_OPTS) $(foreach way,$(WAYS),-s $(way)) -- $(HC_OPTS) -- $(MKDEPENDHS_SRCS) ; \
80            $(MKDEPENDHS) -f .depend $(MKDEPENDHS_OPTS) $(foreach way,$(WAYS),-s $(way)) -- $(HC_OPTS) -- $(MKDEPENDHS_SRCS) ; \
81         fi
82 endif
83 #
84 # The above decides whether to invoke the computation of dependencies
85 # the ghc-0.xx or the ghc-2.x way by looking for "ghc" in the name of
86 # of the `make depend' script. Not bulletproof this.
87 #
88
89 ##################################################################
90 #                       boot
91 #
92 #  The boot target, at a minimum generates dependency information
93
94 .PHONY: boot
95 boot :: depend
96
97
98 ##################################################################
99 #               GNU Standard targets
100 #
101 #       Every Makefile should define the following targets
102
103 # `all'
104 #      Compile the entire program. This should be the default target.
105 #      This target need not rebuild any documentation files; Info files
106 #      should normally be included in the distribution, and DVI files
107 #      should be made only when explicitly asked for.
108
109 # `install'
110 #      Compile the program and copy the executables, libraries, and so on
111 #      to the file names where they should reside for actual use. If
112 #      there is a simple test to verify that a program is properly
113 #      installed, this target should run that test.
114
115 #      The commands should create all the directories in which files are
116 #      to be installed, if they don't already exist. This includes the
117 #      directories specified as the values of the variables prefix and
118 #      exec_prefix , as well as all subdirectories that are needed. One
119 #      way to do this is by means of an installdirs target as described
120 #      below.
121
122 #      Use `-' before any command for installing a man page, so that make
123 #      will ignore any errors.  This is in case there are systems that
124 #      don't have the Unix man page documentation system installed.
125
126 #      The way to install Info files is to copy them into `$(infodir)'
127 #      with $(INSTALL_DATA) (see Command Variables), and then run the
128 #      install-info program if it is present.  install-info is a script
129 #      that edits the Info `dir' file to add or update the menu entry for
130 #      the given Info file; it will be part of the Texinfo package. Here
131 #      is a sample rule to install an Info file:
132
133 #            $(infodir)/foo.info: foo.info # There may be a newer info
134 #            file in . than in srcdir.
135 #                    -if test -f foo.info; then d=.; \
136 #                     else d=$(srcdir); fi; \ $(INSTALL_DATA)
137 #                    $$d/foo.info $@; \ # Run install-info only if it
138 #            exists.  # Use `if' instead of just prepending `-' to the
139 #            # line so we notice real errors from install-info.  # We
140 #            use `$(SHELL) -c' because some shells do not # fail
141 #            gracefully when there is an unknown command.
142 #                    if $(SHELL) -c 'install-info --version' \
143 #                       >/dev/null 2>&1; then \ install-info
144 #                      --infodir=$(infodir) $$d/foo.info; \ else true;
145 #                    fi
146
147 # `uninstall'
148 #      Delete all the installed files that the `install' target would
149 #      create (but not the noninstalled files such as `make all' would
150 #      create).
151
152 # `clean'
153
154 #      Delete all files from the current directory that are normally
155 #      created by building the program.  Don't delete the files that
156 #      record the configuration. Also preserve files that could be made
157 #      by building, but normally aren't because the distribution comes
158 #      with them.
159
160 #      Delete `.dvi' files here if they are not part of the
161 #      distribution.
162
163 # `distclean'
164 #      Delete all files from the current directory that are created by
165 #      configuring or building the program. If you have unpacked the
166 #      source and built the program without creating any other files,
167 #      `make distclean' should leave only the files that were in the
168 #      distribution.
169
170 # `mostlyclean'
171 #      Like `clean', but may refrain from deleting a few files that
172 #      people normally don't want to recompile. For example, the
173 #      `mostlyclean' target for GCC does not delete `libgcc.a', because
174 #      recompiling it is rarely necessary and takes a lot of time.
175
176 # `maintainer-clean'
177 #      Delete everything from the current directory that can be
178 #      reconstructed with this Makefile.  This typically includes
179 #      everything deleted by distclean , plus more: C source files
180 #      produced by Bison, tags tables, Info files, and so on.
181
182 #      One exception, however: `make maintainer-clean' should not delete
183 #      `configure' even if `configure' can be remade using a rule in the
184 #      Makefile. More generally, `make maintainer-clean' should not delete
185 #      anything that needs to exist in order to run `configure' and then
186 #      begin to build the program.
187
188 # `TAGS'
189 #      Update a tags table for this program.
190
191 # `info'
192 #      Generate any Info files needed. The best way to write the rules is
193 #      as follows:
194
195 #            info: foo.info
196
197 #            foo.info: foo.texi chap1.texi chap2.texi
198 #                    $(MAKEINFO) $(srcdir)/foo.texi
199
200 #      You must define the variable MAKEINFO in the Makefile. It should
201 #      run the makeinfo program, which is part of the Texinfo
202 #      distribution.
203
204 # `dvi' `ps'
205 #      Generate DVI files for all TeXinfo documentation. For example:
206
207 #            dvi: foo.dvi
208
209 #            foo.dvi: foo.texi chap1.texi chap2.texi
210 #                    $(TEXI2DVI) $(srcdir)/foo.texi
211
212 #      You must define the variable TEXI2DVI in the Makefile. It should
213 #      run the program texi2dvi , which is part of the Texinfo
214 #      distribution. Alternatively, write just the dependencies, and
215 #      allow GNU Make to provide the command.
216 #
217 #      ps is a FPtools addition for Postscript files
218
219 # `dist' `binary-dist'
220 #      Create a distribution tar file for this program. The tar file
221 #      should be set up so that the file names in the tar file start with
222 #      a subdirectory name which is the name of the package it is a
223 #      distribution for. This name can include the version number.
224
225 #      For example, the distribution tar file of GCC version 1.40 unpacks
226 #      into a subdirectory named `gcc-1.40'.
227
228 #      The easiest way to do this is to create a subdirectory
229 #      appropriately named, use ln or cp to install the proper files in
230 #      it, and then tar that subdirectory.
231
232 #      The dist target should explicitly depend on all non-source files
233 #      that are in the distribution, to make sure they are up to date in
234 #      the distribution. See Making Releases.
235 #
236 #       binary-dist is an FPtools addition for binary distributions
237
238 # `check'
239 #      Perform self-tests (if any). The user must build the program
240 #      before running the tests, but need not install the program; you
241 #      should write the self-tests so that they work when the program is
242 #      built but not installed.
243
244 # The following targets are suggested as conventional names, for programs
245 # in which they are useful.
246
247 # installcheck
248 #      Perform installation tests (if any). The user must build and
249 #      install the program before running the tests. You should not
250 #      assume that `$(bindir)' is in the search path.
251
252 # installdirs
253 #      It's useful to add a target named `installdirs' to create the
254 #      directories where files are installed, and their parent
255 #      directories. There is a script called `mkinstalldirs' which is
256 #      convenient for this; find it in the Texinfo package.
257 #      (FPTOOLS: we use a close relative of the suggested script, situated
258 #       in glafp-utils/mkdirhier -- SOF)
259
260
261
262
263 ###########################################
264 #
265 #       Targets: "all"
266 #
267 ###########################################
268
269 # For each of these variables that is defined
270 # we generate one "all" rule and one rule for the variable itself:
271 #
272 #       HS_PROG         Haskell program
273 #       C_PROG          C program
274 #       LIBRARY         Library
275 #       SCRIPT_PROG     Script (e.g. Perl script)
276 #
277 # For details of exactly what rule is generated, see the
278 # relevant section below
279
280 .PHONY: all
281
282 #----------------------------------------
283 #       Haskell programs
284
285 ifneq "$(HS_PROG)" ""
286 all :: $(HS_PROG)
287
288 $(HS_PROG) :: $(HS_OBJS)
289         $(HC) -o $@ $(HC_OPTS) $(LD_OPTS) $(HS_OBJS) $(LIBS)
290 endif
291
292 #----------------------------------------
293 #       C programs
294
295 ifneq "$(C_PROG)" ""
296 all :: $(C_PROG)
297
298 $(C_PROG) :: $(C_OBJS)
299         $(CC) -o $@ $(CC_OPTS) $(LD_OPTS) $(C_OBJS) $(LIBS)
300 endif
301
302
303 #----------------------------------------
304 #       Libraries/archives
305
306 ifneq "$(LIBRARY)" ""
307 all :: $(LIBRARY)
308
309
310 define BUILD_LIB
311 $(RM) $@
312 $(AR) $(AR_OPTS) $@ $(LIBOBJS)
313 $(RANLIB) $@
314 endef
315
316 #
317 # For Haskell object files, we might have chosen to split
318 # up the object files. Test for whether the library being
319 # built is consisting of Haskell files by (hackily) checking
320 # whether HS_SRCS is empty or not.
321 #
322
323 ifneq "$(HS_SRCS)" ""
324 ifneq "$(filter -split-objs,$(HC_OPTS))" ""
325 define BUILD_LIB
326 $(RM) $@
327 TMPDIR=$(TMPDIR); export TMPDIR; find $(patsubst %.$(way_)o,%,$(LIBOBJS)) -name '*.$(way_)o' -print | xargs ar q $@
328 $(RANLIB) $@
329 endef
330 endif # $(filter...
331 endif
332
333 $(LIBRARY) :: $(LIBOBJS)
334         $(BUILD_LIB)
335 endif
336
337 #----------------------------------------
338 #       Script programs
339
340 ifneq "$(SCRIPT_PROG)" ""
341
342 # To produce a fully functional script, you may
343 # have to add some configuration variables at the top of 
344 # the script, i.e., the compiler driver needs to know
345 # the path to various utils in the build tree for instance.
346 #
347 # To have the build rule for the script automatically do this
348 # for you, set the variable SCRIPT_SUBST_VARS to the list of
349 # variables you need to put in.
350
351 #
352 # SCRIPT_SUBST creates a string of echo commands that
353 # will when evaluated append the (perl)variable name and its value 
354 # to the target it is used for, i.e.,
355 #
356 #    A=foo
357 #    B=bar
358 #    SCRIPT_SUBST_VARS = A B
359 #    SCRIPT_SUBST=echo "$""A=\"foo\";" >> $@; echo "$""B=\"bar\";" >> $@
360 #
361 #    so if you have a rule like the following
362 #    
363 #     foo:
364 #         @(RM) $@
365 #         @(TOUCH) $@
366 #         @eval $(SCRIPT_SUBST)
367 #
368 #    `make foo' would create a file `foo' containing the following
369 #
370 #    % cat foo
371 #    $A=foo;
372 #    $B=bar;
373 #    %
374 #
375 # ToDo: make this work for shell scripts (drop the initial $).
376 #
377 ifeq "$(INTERP)" "$(SHELL)"
378 SCRIPT_SUBST=$(foreach val,$(SCRIPT_SUBST_VARS),"echo \"$(val)=\\\"$($(val))\\\";\" >> $@;")
379 else
380 SCRIPT_SUBST=$(foreach val,$(SCRIPT_SUBST_VARS),"echo \"$$\"\"$(val)=\\\"$($(val))\\\";\" >> $@;")
381 endif
382
383 all :: $(SCRIPT_PROG)
384
385 #
386 # #! support under cygwin32 is not quite there yet, 
387 # so we rely on the eval `trick' instead. On all other
388 # platforms, we prepend #!$(INTERP)  -- SOF 6/97
389
390
391 $(SCRIPT_PROG) :: $(SCRIPT_OBJS)
392         $(RM) $@
393         @echo Creating $@...
394 ifeq "$(INTERP)" "perl"
395 ifneq "$(BIN_DIST)" "1"
396         echo "#! "$(PERL) > $@
397 else
398         @touch $@
399 endif
400 else
401 ifneq "$(INTERP)" ""
402         @echo "#!"$(INTERP) > $@
403 else
404         @touch $@
405 endif
406 endif
407 ifneq "$(SCRIPT_PREFIX_FILES)" ""
408         @cat $(SCRIPT_PREFIX_FILES) >> $@
409 endif
410         @eval $(SCRIPT_SUBST) 
411         @cat $(SCRIPT_OBJS) >> $@
412         @chmod a+x $@
413         @echo Done.
414 endif
415
416
417 ###########################################
418 #
419 #       Targets: install install-strip uninstall
420 #
421 ###########################################
422
423 # For each of these variables that is defined, you
424 # get one install rule
425 #
426 #       INSTALL_PROGS     executable programs in $(bindir)
427 #       INSTALL_BIN_LINKS symbolic links to executable programs in $(bindir)
428 #       INSTALL_SCRIPTS   executable scripts in $(bindir)
429 #       INSTALL_LIBS      platform-dependent libraries in $(libdir) (ranlib'ed)
430 #       INSTALL_LIBEXECS  platform-dependent execs in $(libdir)
431 #       INSTALL_DATAS     platform-independent files in $(datadir)
432 #
433 # If the installation directory variable is undefined, the install rule simply
434 # emits a suitable error message.
435 #
436 # Remember, too, that the installation directory variables ($(bindir) and
437 # friends can be overridden from their original settings in mk/config.mk.in
438 # || mk/build.mk
439 #
440 .PHONY: install installdirs install-strip install-dirs uninstall install-docs show-install
441
442 show-install :
443         @echo "bindir = $(bindir)"
444         @echo "libdir = $(libdir)"
445         @echo "libexecdir = $(libexecdir)  # by default, same as libdir"
446         @echo "datadir = $(datadir)  # unused for ghc project"
447
448 #
449 # Sometimes useful to separate out the creation of install directories 
450 # from the installation itself.
451 #
452 install-dirs ::
453         @$(INSTALL_DIR) $(bindir)
454         @$(INSTALL_DIR) $(libdir)
455         @$(INSTALL_DIR) $(libexecdir)
456         @$(INSTALL_DIR) $(datadir)
457
458 # Better do this first...
459 # but we won't for the moment, do it on-demand from
460 # within the various install targets instead.
461 #install:: install-dirs
462
463 ifneq "$(INSTALL_PROGS)" ""
464 install:: $(INSTALL_PROGS)
465         @$(INSTALL_DIR) $(bindir)
466         for i in $(INSTALL_PROGS); do \
467                 $(INSTALL_PROGRAM) $(INSTALL_BIN_OPTS) $$i$(exeext) $(bindir); \
468         done
469 endif
470
471 ifneq "$(INSTALL_BIN_LINKS)" ""
472 install:: $(INSTALL_BIN_LINKS)
473         @$(INSTALL_DIR) $(bindir)
474         for i in $(INSTALL_BIN_LINKS); do \
475                 $(INSTALL_PROGRAM) $(INSTALL_OPTS) $$i$(exeext) $(bindir); \
476         done
477 endif
478
479 #
480 # Just like INSTALL_PROGS, but prefix with install sites bin/lib/data and
481 # install without stripping.
482 #
483 ifneq "$(INSTALL_SCRIPTS)" ""
484 install:: $(INSTALL_SCRIPTS)
485         @$(INSTALL_DIR) $(bindir)
486 ifeq "$(INTERP)" "perl"
487 ifneq "$(BIN_DIST)" "1"
488         @for i in $(INSTALL_SCRIPTS); do \
489            $(RM) $$i.tmp; \
490            echo "#! $(PERL)" > $$i.tmp ; \
491            echo '$$'"bindir='$(bindir)';"                            >> $$i.tmp ; \
492            echo '$$'"libdir='$(libdir)';"                            >> $$i.tmp ; \
493            echo '$$'"libexecdir='$(libexecdir)';"                    >> $$i.tmp ; \
494            echo '$$'"datadir='$(datadir)';"                          >> $$i.tmp ; \
495            cat  $$i                                                >> $$i.tmp ; \
496            echo $(INSTALL_PROGRAM) $(filter-out -s,$(INSTALL_OPTS)) $$i.tmp $(bindir)/$$i ;    \
497            $(INSTALL_PROGRAM) $(filter-out -s,$(INSTALL_BIN_OPTS)) $$i.tmp $(bindir)/$$i ; \
498            $(RM) $$i.tmp; \
499         done
500 else
501         for i in $(INSTALL_SCRIPTS); do \
502                 $(INSTALL_PROGRAM) $(INSTALL_OPTS) $$i $(bindir); \
503         done
504 endif
505 else
506         for i in $(INSTALL_SCRIPTS); do \
507                 $(INSTALL_PROGRAM) $(INSTALL_OPTS) $$i $(bindir); \
508         done
509 endif
510 endif
511
512 ifneq "$(INSTALL_LIB_SCRIPTS)" ""
513 install:: $(INSTALL_LIB_SCRIPTS)
514         @$(INSTALL_DIR) $(libdir)
515 ifeq "$(INTERP)" "perl"
516 ifneq "$(BIN_DIST)" "1"
517         @for i in $(INSTALL_LIB_SCRIPTS); do \
518            $(RM) $$i.tmp; \
519            echo "#! $(PERL)" > $$i.tmp ; \
520            echo '$$'"bindir='$(bindir)';"                            >> $$i.tmp ; \
521            echo '$$'"libdir='$(libdir)';"                            >> $$i.tmp ; \
522            echo '$$'"libexecdir='$(libexecdir)';"                    >> $$i.tmp ; \
523            echo '$$'"datadir='$(datadir)';"                          >> $$i.tmp ; \
524            cat  $$i                                                >> $$i.tmp ; \
525            echo $(INSTALL_PROGRAM) $(INSTALL_OPTS) $$i $(libdir) ;    \
526            $(INSTALL_PROGRAM) $(INSTALL_OPTS) $$i.tmp $(libdir)/$$i ; \
527            $(RM) $$i.tmp; \
528         done
529 else
530         for i in $(INSTALL_LIB_SCRIPTS); do \
531                 $(INSTALL_PROGRAM) $(INSTALL_OPTS) $$i $(libdir); \
532         done
533 endif
534 else
535         for i in $(INSTALL_LIB_SCRIPTS); do \
536                 $(INSTALL_PROGRAM) $(INSTALL_OPTS) $$i $(libdir); \
537         done
538 endif
539 endif
540
541 ifneq "$(INSTALL_LIBEXEC_SCRIPTS)" ""
542 install:: $(INSTALL_LIBEXEC_SCRIPTS)
543         @$(INSTALL_DIR) $(libexecdir)
544 ifeq "$(INTERP)" "perl"
545 ifneq "$(BIN_DIST)" "1"
546         @for i in $(INSTALL_LIBEXEC_SCRIPTS); do \
547            $(RM) $$i.tmp; \
548            echo "#! $(PERL)" > $$i.tmp ; \
549            echo '$$'"bindir='$(bindir)';"                            >> $$i.tmp ; \
550            echo '$$'"libdir='$(libdir)';"                            >> $$i.tmp ; \
551            echo '$$'"libexecdir='$(libexecdir)';"                    >> $$i.tmp ; \
552            echo '$$'"datadir='$(datadir)';"                          >> $$i.tmp ; \
553            cat  $$i                                                >> $$i.tmp ; \
554            echo $(INSTALL_PROGRAM) $(INSTALL_OPTS) $$i $(libexecdir) ;    \
555            $(INSTALL_PROGRAM) $(INSTALL_OPTS) $$i.tmp $(libexecdir)/$$i ; \
556            $(RM) $$i.tmp; \
557         done
558 else
559         for i in $(INSTALL_LIBEXEC_SCRIPTS); do \
560                 $(INSTALL_PROGRAM) $(INSTALL_OPTS) $$i $(libexecdir); \
561         done
562 endif
563 else
564         for i in $(INSTALL_LIBEXEC_SCRIPTS); do \
565                 $(INSTALL_PROGRAM) $(INSTALL_OPTS) $$i $(libexecdir); \
566         done
567 endif
568 endif
569
570 ifneq "$(INSTALL_LIBS)" ""
571 install:: $(INSTALL_LIBS)
572         @$(INSTALL_DIR) $(libdir)
573         for i in $(INSTALL_LIBS); do \
574                 case $$i in \
575                   *.a) \
576                     $(INSTALL_DATA) $(INSTALL_OPTS) $$i $(libdir); \
577                     $(RANLIB) $(libdir)/`basename $$i` ;; \
578                   *) \
579                     $(INSTALL_DATA) $(INSTALL_OPTS) $$i $(libdir); \
580                 esac; \
581         done
582 endif
583
584 ifneq "$(INSTALL_LIBEXECS)" ""
585 install:: $(INSTALL_LIBEXECS)
586         @$(INSTALL_DIR) $(libexecdir)
587         -for i in $(INSTALL_LIBEXECS); do \
588                 $(INSTALL_PROGRAM) $(INSTALL_BIN_OPTS) $$i$(exeext) $(libexecdir); \
589         done
590 endif
591
592 ifneq "$(INSTALL_DATAS)" ""
593 install:: $(INSTALL_DATAS)
594         @$(INSTALL_DIR) $(datadir)
595         for i in $(INSTALL_DATAS); do \
596                 $(INSTALL_DATA) $(INSTALL_OPTS) $$i $(datadir); \
597         done
598 endif
599
600 #
601 # Use with care..
602 #
603 uninstall:: 
604 ifeq ($(INSTALL_PROGS),)
605         @for i in $(INSTALL_PROGS) ; do                         \
606                 echo rm -f $(bindir)/`basename $$i`;            \
607                 rm -f $(bindir)/`basename $$i`;                 \
608         done
609 endif
610 ifeq ($(INSTALL_LIBS),)
611         @for i in $(INSTALL_LIBS); do                           \
612                 echo rm -f $(libdir)/`basename $$i`;            \
613                 rm -f $(libdir)/`basename $$i`;                 \
614         done
615 endif
616 ifeq ($(INSTALL_LIBEXECS),)
617         @for i in $(INSTALL_LIBEXECS); do                       \
618                 echo rm -f $(libexecdir)/`basename $$i`;        \
619                 rm -f $(libexecdir)/`basename $$i`;             \
620         done
621 endif
622 ifeq ($(INSTALL_DATAS),)
623         @for i in $(INSTALL_DATAS); do                          \
624                 echo rm -f $(datadir)/`basename $$i`;           \
625                 rm -f $(datadir)/`basename $$i`;                \
626         done
627 endif
628
629 #
630 # install-strip is from the GNU Makefile standard.
631 #
632 ifneq "$(way)" ""
633 install-strip::
634         @$(MAKE) EXTRA_INSTALL_OPTS='-s' install                                        
635 endif
636
637 ###########################################
638 #
639 #       Targets: dist binary-dist
640 #
641 ###########################################
642
643
644 #
645 # dist-pre is a canned rule the toplevel of your source tree
646 # would use as follows, 
647 #
648 #  dist :: dist-pre
649 #
650 # it performs two tasks, first creating the distribution directory
651 # tree and it then decorates the new tree with symbolic links pointing
652 # to the symbolic links in the build tree.
653 #
654 # The dist-pre relies on (at least) the `find' in GNU findutils
655 # (only tested with version 4.1). All non-GNU `find's I have
656 # laid on my hands locally, has a restrictive treatment of {} in
657 # -exec commands, i.e.,
658 #
659 #   find . -print echo a{} \;
660 #   
661 # does not expand the {}, it has to be a separate argument (i.e. `a {}').
662 # GNU find is (IMHO) more sensible here, expanding any {} it comes across
663 # inside an -exec, whether it is a separate arg or part of a word:
664 #
665 #  $ touch yes
666 #  $ find --version
667 #    GNU find version 4.1
668 #  $ find yes -exec echo oh,{}! \;
669 #    oh,yes!
670 #
671 # Of course, the above is not impossible to achieve with other finds,
672 # just that GNU find does the Patently Right Thing here :)
673 #
674 # ====> if you're using these dist rules, get hold of GNU findutils.
675 #
676 #  --SOF 2/97
677 #
678 .PHONY: dist dist-pre dist-post
679
680 #
681 # The dist rules leaves out CVS, SRC (from mkshadowdir) and tests
682 # directories when creating shadow source distrib tree
683 #
684 dist-pre::
685         -rm -rf $(SRC_DIST_DIR)
686         -rm -f $(SRC_DIST_NAME).tar.gz
687         (cd $(FPTOOLS_TOP_ABS); find $(SRC_DIST_DIRS) -type d \( -name CVS -prune -o -name SRC -prune -o -name tests -prune -o -exec $(MKDIRHIER) $(SRC_DIST_DIR)/{} \; \) ; )
688         (cd $(FPTOOLS_TOP_ABS); find $(SRC_DIST_DIRS) -name CVS -prune -o -name SRC -prune -o -name tests -prune -o -name "*~" -prune -o -name ".cvsignore" -prune -o -name "\#*" -prune -o -name ".\#*" -prune -o -type l -exec $(LN_S) $(FPTOOLS_TOP_ABS)/{} $(SRC_DIST_DIR)/{} \; )
689
690 #
691 # After having created a shadow distribution tree and copied/linked
692 # all the necessary files to it, `dist-post' makes sure the permissions
693 # are set right and then package up the tree. Empty directories are also removed.
694 #
695 # For now, we make the packaging a separate rule, so as to allow
696 # the inspection of the dist tree before eventually packaging it up.
697 #
698 dist-post::
699         @echo Deleting the following empty directories..
700         ( cd $(SRC_DIST_DIR) ; cd .. ; find $(SRC_DIST_NAME) -type d -exec sh -c 'test x`ls $$0 | wc -l | sed -e "s/ //g"` = x0' {} \; -print -exec rm -rf {} \; -prune )
701         ( cd $(SRC_DIST_DIR) ; cd .. ; chmod -R a+rw $(SRC_DIST_NAME) ) 
702
703 dist-package::
704         cd $(SRC_DIST_DIR); cd ..; $(TAR) chzf $(SRC_DIST_NAME).tar.gz $(SRC_DIST_NAME)
705
706 #
707
708
709 # The default dist rule:
710 #
711 # copy/link the contents of $(SRC_DIST_FILES) into the
712 # shadow distribution tree. SRC_DIST_FILES contain the
713 # build-generated files that you want to include in
714 # a source distribution.
715 #
716 #
717 ifneq "$(SRC_DIST_FILES)" ""
718 dist::
719         @for i in $(SRC_DIST_FILES); do                  \
720           if (test -f "$$i"); then                       \
721             echo $(LN_S) `pwd`/$$i $(SRC_DIST_DIR)/$$i ; \
722             $(LN_S) `pwd`/$$i $(SRC_DIST_DIR)/$$i ;      \
723           fi;                                            \
724         done;
725 endif
726
727 #
728 # binary-dist creates a binary bundle, set BIN_DIST_NAME
729 # to package name and do `make binary-dist' (normally this
730 # just a thing you would do from the toplevel of fptools or)
731 # from the top of a project.
732 #
733 .PHONY: binary-dist-pre binary-dist binary-pack
734
735 binary-dist-pre::
736         -rm -rf $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)
737         -rm -f $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME).tar.gz
738         @for i in $(BIN_DIST_DIRS); do                   \
739           if test -d "$$i"; then                         \
740            echo $(MKDIRHIER) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/bin/$(TARGETPLATFORM)/$(ProjectNameShort)-$(ProjectVersion); \
741            $(MKDIRHIER) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/bin/$(TARGETPLATFORM)/$(ProjectNameShort)-$(ProjectVersion); \
742            echo $(MKDIRHIER) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM)/$(ProjectNameShort)-$(ProjectVersion); \
743            $(MKDIRHIER) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM)/$(ProjectNameShort)-$(ProjectVersion); \
744            echo $(MKDIRHIER) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/share/$(ProjectNameShort)-$(ProjectVersion); \
745            $(MKDIRHIER) $(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/share/$(ProjectNameShort)-$(ProjectVersion); \
746            echo $(MAKE) -C $$i $(MFLAGS) install BIN_DIST=1 BIN_DIST_NAME=$(BIN_DIST_NAME) \
747                         prefix=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME) \
748                         exec_prefix=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME) \
749                         bindir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/bin/$(TARGETPLATFORM)/$(ProjectNameShort)-$(ProjectVersion) \
750                         libdir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM)/$(ProjectNameShort)-$(ProjectVersion) \
751                         libexecdir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM)/$(ProjectNameShort)-$(ProjectVersion) \
752                         datadir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/share/$(ProjectNameShort)-$(ProjectVersion) ; \
753            $(MAKE) -C $$i $(MFLAGS) install BIN_DIST=1 BIN_DIST_NAME=$(BIN_DIST_NAME) \
754                         prefix=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME) \
755                         exec_prefix=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME) \
756                         bindir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/bin/$(TARGETPLATFORM)/$(ProjectNameShort)-$(ProjectVersion) \
757                         libdir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM)/$(ProjectNameShort)-$(ProjectVersion) \
758                         libexecdir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/lib/$(TARGETPLATFORM)/$(ProjectNameShort)-$(ProjectVersion) \
759                         datadir=$(BIN_DIST_TMPDIR)/$(BIN_DIST_NAME)/share/$(ProjectNameShort)-$(ProjectVersion) ; \
760           fi; \
761         done
762
763 #
764 # Do this separately for now
765
766 binary-pack::
767         ( cd $(BIN_DIST_TMPDIR); $(TAR) chzf $(BIN_DIST_NAME).tar.gz $(BIN_DIST_NAME); rm -rf $(BIN_DIST_NAME) )
768
769 ifneq "$(way)" ""
770 package-way-dist::
771         ( cd $(BIN_DIST_TMPDIR); find $(BIN_DIST_NAME)/ \( -name "*$(_way).a" -o -name "*.$(way_)hi" \) -print | xargs tar cvf $(BIN_DIST_TMPDIR)/ghc-$(ProjectVersion)-$(way)-$(TARGETPLATFORM).tar )
772         gzip $(BIN_DIST_TMPDIR)/ghc-$(ProjectVersion)-$(way)-$(TARGETPLATFORM).tar
773 endif
774
775 ifneq "$(way)" ""
776 remove-way-dist::
777         ( cd $(BIN_DIST_TMPDIR); find $(BIN_DIST_NAME)/ \( -name "*$(_way).a" -o -name "*.$(way_)hi" \) -print -exec rm -f {} \; )
778 endif
779
780 ###########################################
781 #
782 #       Targets: check tags show info
783 #
784 ###########################################
785
786 #------------------------------------------------------------
787 #                       Check
788
789 .PHONY: check
790
791 check:: $(TESTS)
792         @for i in $(filter-out %.lhs .hs, $(TESTS)) ''; do      \
793           if (test -f "$$i"); then              \
794             echo Running: `basename $$i` ;      \
795             cd test; `basename $$i` ;           \
796           fi;                                   \
797         done;
798
799 #------------------------------------------------------------
800 #                       Tags
801
802 .PHONY: TAGS
803
804 TAGS:: $(SOURCES)
805         @$(RM) TAGS
806         @touch TAGS
807 ifneq "$(HS_SRCS)" ""
808         $(HSTAGS) $(HSTAGS_OPTS) -- $(TAGS_HS_SRCS)
809 endif
810 ifneq "$(C_SRCS)" ""
811         etags -a $(TAGS_C_SRCS)
812 endif
813         @( DEREFFED=`ls -l Makefile | sed -e 's/.*-> \(.*\)/\1/g'` && $(RM) `dirname $$DEREFFED`/TAGS && $(CP) TAGS `dirname $$DEREFFED` ) || echo TAGS file generated, perhaps copy over to source tree?
814
815 #------------------------------------------------------------
816 #                       Makefile debugging
817 # to see the effective value used for a Makefile variable, do
818 #  make show VALUE=MY_VALUE
819 #
820
821 show:
822         @echo '$(VALUE)=$($(VALUE))'
823
824 #------------------------------------------------------------
825 #                       Documentation
826
827 .PHONY: dvi ps html info txt
828
829 info:: $(DOC_INFO)
830 dvi:: $(DOC_DVI)
831 ps::  $(DOC_PS)
832 html:: $(DOC_HTML)
833 texi:: $(DOC_TEXI)
834 txt:: $(DOC_TEXT)
835
836 #
837 # Building literate root documents requires extra treatment,
838 # as the root files need to be processed different from other
839 # literate files (`compile' them into .itex with the -S (standalone)
840 # option) and then link together a master TeX document with
841 # a -S option.
842 #
843 $(filter %.tex,$(patsubst %.lit,%.tex,$(DOC_SRCS))) :
844         @$(RM) $@
845         $(LIT2LATEX) -S -c $(LIT2LATEX_OPTS) -o $(patsubst %.tex,%.itex,$@) $(addsuffix .lit,$(basename $@))
846         $(LIT2LATEX) -S $(LIT2LATEX_OPTS) -o $@ $(addsuffix .itex,$(basename $@))
847         @chmod 444 $@
848 #
849 # Ditto for texi and html
850 #
851 $(filter %.texi,$(patsubst %.lit,%.texi,$(DOC_SRCS))) :
852         @$(RM) $@
853         $(LIT2TEXI) -S -c $(LIT2TEXI_OPTS) -o $(patsubst %.texi,%.itxi,$@) $(addsuffix .lit,$(basename $@))
854         $(LIT2TEXI) -S $(LIT2TEXI_OPTS) -o $@ $(addsuffix .itxi,$(basename $@))
855         @chmod 444 $@
856 #
857 # Rather than using lit2html, we opt for the lit-texi-html route,
858 # and use texi2html as our HTML backend.
859 # (Note: we need to change mkdependlit to get this really off the ground)
860 #
861 # If the generated html representation is split up into a myriad of files,
862 # put the files in a subdirectory html/, if a monolith is created, park
863 # the generated file in the same dir as the .lit file.
864 #
865 $(filter %.html,$(patsubst %.lit,%.html,$(DOC_SRCS))) : $(filter %.lit,$(DOC_SRCS))
866         $(RM) $@ $(patsubst %.html,%.texi,$@) $(patsubst %.html,%.itxi,$@)
867 ifneq "$(filter -monolithic,$(TEXI2HTML_OPTS))" ""
868         $(LIT2TEXI) -S -c $(LIT2TEXI_OPTS) -o $(patsubst %.html,%.itxi,$@) $(addsuffix .lit,$(basename $@))
869         $(LIT2TEXI) -S $(LIT2TEXI_OPTS) -o $(patsubst %.html,%.texi,$@) $(addsuffix .itxi,$(basename $@))
870         $(TEXI2HTML) $(TEXI2HTML_OPTS) $(patsubst %.html,%.texi,$@)
871         cp $(TEXI2HTML_PREFIX)invisible.xbm .
872 else
873         $(RM) html/$(basename $@)*
874         $(MKDIRHIER) html
875         $(LIT2TEXI) -S -c $(LIT2TEXI_OPTS) -o $(patsubst %.html,%.itxi,$@) $(addsuffix .lit,$(basename $@))
876         $(LIT2TEXI) -S $(LIT2TEXI_OPTS) -o html/$(patsubst %.html,%.texi,$@) $(addsuffix .itxi,$(basename $@))
877         (cd html; ../$(TEXI2HTML) $(TEXI2HTML_OPTS) $(patsubst %.html,%.texi,$@); cd ..)
878         cp $(TEXI2HTML_PREFIX)invisible.xbm html/
879         @touch $@
880 endif
881
882 #--------------------------------------------------------------------------
883 # SGML Documentation
884 #
885 # This will eventually replace the literate stuff for documentation
886
887 SGML_SRCS = $(wildcard    *.sgml *.vsgml)
888 SGML_DVI  = $(addsuffix  .dvi, $(basename $(SGML_SRCS)))
889 SGML_PS   = $(addsuffix   .ps, $(basename $(SGML_SRCS)))
890 SGML_TEXI = $(addsuffix .texi, $(basename $(SGML_SRCS)))
891 SGML_INFO = $(addsuffix .info, $(basename $(SGML_SRCS)))
892 SGML_HTML = $(addsuffix .html, $(basename $(SGML_SRCS)))
893 SGML_TEXT = $(addsuffix  .txt, $(basename $(SGML_SRCS)))
894
895 dvi  :: $(SGML_DVI)
896 info :: $(SGML_INFO)
897 html :: $(SGML_HTML)
898 txt  :: $(SGML_TXT)
899 ps   :: $(SGML_PS)
900
901 CLEAN_FILES += $(SGML_TEXT) $(SGML_HTML) $(SGML_TEXI) $(SGML_PS) $(SGML_DVI)
902
903 # suffix rules should handle the rest (for single-file docs at least).
904
905 ###########################################
906 #
907 #       Targets: clean
908 #
909 ###########################################
910
911 .PHONY: realclean mostlyclean clean distclean maintainer-clean
912
913 # realclean is just a synonym for maintainer-clean
914 realclean: maintainer-clean
915
916
917 ifneq "$(MOSTLY_CLEAN_FILES)" ""
918 mostlyclean::
919         rm -f $(MOSTLY_CLEAN_FILES)
920 endif
921
922 ifneq "$(CLEAN_FILES)" ""
923 clean:: mostlyclean
924         rm -f $(CLEAN_FILES)
925 endif
926
927
928 ifneq "$(DIST_CLEAN_FILES)" ""
929 distclean:: mostlyclean clean
930         rm -f $(DIST_CLEAN_FILES)
931 endif
932
933
934 ifneq "$(MAINTAINER_CLEAN_FILES)" ""
935 maintainer-clean:: mostlyclean clean distclean
936         @echo 'This command is intended for maintainers to use; it'
937         @echo 'deletes files that may need special tools to rebuild.'
938         rm -f $(MAINTAINER_CLEAN_FILES)
939 endif
940
941 #
942 # If (Haskell) object files are split, cleaning up 
943 # consist of descending into the directories where
944 # the myriads of object files have been put.
945 #
946
947 ifneq "$(HS_OBJS)" ""
948 ifneq "$(filter -split-objs,$(HC_OPTS))" ""
949 clean ::
950         find $(patsubst %.$(way_)o,%,$(HS_OBJS)) -name '*.$(way_)o' -print | xargs $(RM) __rm_food
951         -rmdir $(patsubst %.$(way_)o,%,$(HS_OBJS))
952 endif
953 endif
954
955
956 #################################################################################
957 #
958 #                       Way management
959 #
960 #################################################################################
961
962 # Here is the ingenious jiggery pokery that allows you to build multiple versions
963 # of a program in a single build tree.
964 #
965 # The ways setup requires the following variables to be set:
966 #
967 # Expects:      $(WAYS)                 the possible "way" strings to one of 
968 #                                       which $(way) will be set
969
970
971 # So how does $(way) ever get set to anything?  Answer, we recursively
972 # invoke make, setting $(way) on the command line.
973 # When do we do this recursion?  Answer: whenever the programmer
974 # asks make to make a target that involves a way suffix.
975 # We must remember *not* to recurse again; but that's easy: we
976 # just see if $(way) is set:
977
978 ifeq "$(way)" ""
979
980 # If $(WAYS) = p mc, then WAY_TARGETS expands to
981 #       %.p_lhs %.p_hs %.p_o ... %.mc_lhs %.p_hs ...
982 # and OTHER_WAY_TARGETS to
983 #       %_p.a %_p %_mc.a %_mc
984 # where the suffixes are from $(SUFFIXES)
985 #
986 # We have to treat libraries and "other" targets differently, 
987 # because their names are of the form
988 #       libHS_p.a and Foo_p
989 # whereas everything else has names of the form
990 #       Foo.p_o
991
992 FPTOOLS_SUFFIXES := o hi hc
993
994 WAY_TARGETS     = $(foreach way,$(WAYS),$(foreach suffix, $(FPTOOLS_SUFFIXES), %.$(way)_$(suffix)))
995 LIB_WAY_TARGETS = $(foreach way,$(WAYS),%_$(way).a %_$(way))
996
997 # $@ will be something like Foo.p_o
998 # $(suffix $@)     returns .p_o
999 # $(subst .,.p_o)  returns p_o
1000 # $(subst _,.,p_o) returns p.o   (clever)
1001 # $(basename p.o)  returns p
1002
1003 $(WAY_TARGETS) :
1004         $(MAKE) way=$(basename $(subst _,.,$(subst .,,$(suffix $@)))) $@
1005
1006 # $(@F) will be something like libHS_p.a, or Foo_p
1007 # $(basename $(@F)) will be libHS_p, or Foo_p
1008 # The sed script extracts the "p" part.
1009
1010 $(LIB_WAY_TARGETS) :
1011         $(MAKE) $(MFLAGS) $@ way=$(subst .,,$(suffix $(subst _,.,$(basename $@))))
1012
1013 endif   # if way
1014
1015
1016 ##################################################################
1017 #
1018 #               Recursive stuff
1019 #
1020 ##################################################################
1021
1022 # Here are the diabolically clever rules that
1023
1024 # (a) for each "recursive target" <t>
1025 #     propagates "make <t>" to directories in SUBDIRS
1026 #
1027 # (b) when SUBDIRS is empty,
1028 #     for each "multi-way-target" <t>
1029 #     calls "make -way=w <t>" for each w in $(WAYS)
1030 #
1031 #     This has the effect of making the standard target
1032 #     in each of the specified ways (as well as in the normal way
1033
1034 # Controlling variables
1035 #       WAYS    = extra (beyond the normal way) ways to build things in
1036 #       SUBDIRS = subdirectories to recurse into
1037
1038 # No ways, so iterate over the SUBDIRS
1039
1040 # note about recursively invoking make: we'd like make to drop all the
1041 # way back to the top level if it fails in any of the
1042 # sub(sub-...)directories.  This is done by setting the -e flag to the
1043 # shell during the loop, which causes an immediate failure if any of
1044 # the shell commands fail.
1045
1046 # One exception: if the user gave the -i or -k flag to make in the
1047 # first place, we'd like to reverse this behaviour.  So we check for
1048 # these flags, and set the -e flag appropriately.  NOTE: watch out for
1049 # the --no-print-directory flag which is passed to recursive
1050 # invocations of make.
1051
1052 ifeq "$(way)" ""
1053 ifneq "$(SUBDIRS)" ""
1054
1055 all docs runtests boot TAGS clean veryclean maintainer-clean install info ::
1056         @echo "------------------------------------------------------------------------"
1057         @echo "===fptools== Recursively making \`$@' in $(SUBDIRS) ..."
1058         @echo "PWD = $(shell pwd)"
1059         @echo "------------------------------------------------------------------------"
1060         @case '${MFLAGS}' in *-[ik]*) set +e;; *-r*[ik]*) set +e;; *) set -e;; esac; \
1061         for i in $(SUBDIRS) ; do \
1062           echo "------------------------------------------------------------------------"; \
1063           echo "==fptools== $(MAKE) $@ $(MFLAGS);"; \
1064           echo " in $(shell pwd)/$$i"; \
1065           echo "------------------------------------------------------------------------"; \
1066           $(MAKE) --no-print-directory -C $$i $(MFLAGS) $@; \
1067         done
1068         @echo "------------------------------------------------------------------------"
1069         @echo "===fptools== Finished making \`$@' in $(SUBDIRS) ..."
1070         @echo "PWD = $(shell pwd)"
1071         @echo "------------------------------------------------------------------------"
1072
1073 dist ::
1074         @case '${MFLAGS}' in *-[ik]*) set +e;; *-r*[ik]*) set +e;; *) set -e;; esac; \
1075         for i in $(SUBDIRS) ; do \
1076           $(MKDIRHIER_PREFIX)mkdirhier $(SRC_DIST_DIR)/$$i; \
1077           $(MAKE) -C $$i $(MFLAGS) $@ SRC_DIST_DIR=$(SRC_DIST_DIR)/$$i; \
1078         done
1079 endif
1080 endif
1081
1082 #
1083 # Selectively building subdirectories.
1084 #
1085 #
1086 ifneq "$(SUBDIRS)" ""
1087 $(SUBDIRS) ::
1088           $(MAKE) -C $@ $(MFLAGS)
1089 endif
1090
1091 ifneq "$(WAYS)" ""
1092 ifeq "$(way)" ""
1093
1094 # NB: the targets exclude 
1095 #       boot info TAGS
1096 # since these are way-independent
1097 all docs runtests TAGS clean veryclean maintainer-clean install ::
1098         @echo "------------------------------------------------------------------------"
1099         @echo "===fptools== Recursively making \`$@' for ways: $(WAYS) ..."
1100         @echo "PWD = $(shell pwd)"
1101         @echo "------------------------------------------------------------------------"
1102         @case '${MFLAGS}' in *-[ik]*) set +e;; *-r*[ik]*) set +e;; *) set -e;; esac; \
1103         for i in $(WAYS) ; do \
1104           echo "------------------------------------------------------------------------"; \
1105           echo "==fptools== $(MAKE) way=$$i $@;"; \
1106           echo "PWD = $(shell pwd)"; \
1107           echo "------------------------------------------------------------------------"; \
1108           $(MAKE) way=$$i --no-print-directory $(MFLAGS) $@ ; \
1109         done
1110         @echo "------------------------------------------------------------------------"
1111         @echo "===fptools== Finished recursively making \`$@' for ways: $(WAYS) ..."
1112         @echo "PWD = $(shell pwd)"
1113         @echo "------------------------------------------------------------------------"
1114
1115 endif
1116 endif
1117