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