[project @ 2004-11-12 14:56:10 by stolz]
[ghc-hetmet.git] / mk / target.mk
1 #################################################################################
2 #
3 #                       target.mk
4 #
5 #               Standard targets for fptools
6 #
7 #################################################################################
8
9 #
10 # This file contain three groups of target rules:
11 #
12 # 1.  FPtools targets
13 #       depend*
14 #       runtests*
15 #
16 # 2.  GNU standard targets
17 #       all*
18 #       install* uninstall installcheck installdirs
19 #       install-docs*
20 #       clean* distclean* mostlyclean* maintainer-clean*
21 #       tags*
22 #       dvi ps (no info) FPTOOLS adds: pdf rtf html
23 #       check
24 #
25 # 3. Some of the above targets have a version that
26 #    recursively invokes that target in sub-directories.
27 #    This relies on the importing Makefile setting SUBDIRS
28 #
29 #    The recursive targets are marked with a * above
30 #
31
32
33
34 #
35
36 ##################################################################
37 # 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 #               FPtools 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 # `uninstall'
138 #      Delete all the installed files that the `install' target would
139 #      create (but not the noninstalled files such as `make all' would
140 #      create).
141
142 # `clean'
143
144 #      Delete all files from the current directory that are normally
145 #      created by building the program.  Don't delete the files that
146 #      record the configuration. Also preserve files that could be made
147 #      by building, but normally aren't because the distribution comes
148 #      with them.
149
150 #      Delete `.dvi' files here if they are not part of the
151 #      distribution.
152
153 # `distclean'
154 #      Delete all files from the current directory that are created by
155 #      configuring or building the program. If you have unpacked the
156 #      source and built the program without creating any other files,
157 #      `make distclean' should leave only the files that were in the
158 #      distribution.
159
160 # `mostlyclean'
161 #      Like `clean', but may refrain from deleting a few files that
162 #      people normally don't want to recompile. For example, the
163 #      `mostlyclean' target for GCC does not delete `libgcc.a', because
164 #      recompiling it is rarely necessary and takes a lot of time.
165
166 # `maintainer-clean'
167 #      Delete everything from the current directory that can be
168 #      reconstructed with this Makefile.  This typically includes
169 #      everything deleted by distclean , plus more: C source files
170 #      produced by Bison, tags tables, and so on.
171
172 #      One exception, however: `make maintainer-clean' should not delete
173 #      `configure' even if `configure' can be remade using a rule in the
174 #      Makefile. More generally, `make maintainer-clean' should not delete
175 #      anything that needs to exist in order to run `configure' and then
176 #      begin to build the program.
177
178 # `TAGS'
179 #      Update a tags table for this program.
180
181 # `dvi' `ps' `pdf' `html' `rtf' 
182 #      Generate DVI/PS/PDF files for LaTeX/DocBook docs. Not everything is
183 #      supported everywhere, but the intention is to standardise on DocBook
184 #      producing all formats.
185 #
186 # `check'
187 #      Perform self-tests (if any). The user must build the program
188 #      before running the tests, but need not install the program; you
189 #      should write the self-tests so that they work when the program is
190 #      built but not installed.
191
192 # The following targets are suggested as conventional names, for programs
193 # in which they are useful.
194
195 # installcheck
196 #      Perform installation tests (if any). The user must build and
197 #      install the program before running the tests. You should not
198 #      assume that `$(bindir)' is in the search path.
199
200 # installdirs
201 #      It's useful to add a target named `installdirs' to create the
202 #      directories where files are installed, and their parent
203 #      directories. There is a script called `mkinstalldirs' which is
204 #      convenient for this; find it in the Texinfo package.
205 #      (FPTOOLS: we use a close relative of the suggested script, situated
206 #       in glafp-utils/mkdirhier -- SOF)
207
208
209
210
211 ###########################################
212 #
213 #       Targets: "all"
214 #
215 ###########################################
216
217 # For each of these variables that is defined
218 # we generate one "all" rule and one rule for the variable itself:
219 #
220 #       HS_PROG         Haskell program
221 #       C_PROG          C program
222 #       LIBRARY         Library
223 #       SCRIPT_PROG     Script (e.g. Perl script)
224 #
225 # For details of exactly what rule is generated, see the
226 # relevant section below
227
228 .PHONY: all
229
230 #----------------------------------------
231 #       Haskell programs
232
233 ifneq "$(HS_PROG)" ""
234 all :: $(HS_PROG)
235
236 ifneq "$(BootingFromHc)" "YES"
237 $(HS_PROG) :: $(OBJS)
238         $(HC) -o $@ $(HC_OPTS) $(LD_OPTS) $(OBJS)
239 else
240 # see bootstrap.mk
241 $(HS_PROG) :: $(OBJS)
242         $(CC) -o $@ $(HC_BOOT_CC_OPTS) $(HC_BOOT_LD_OPTS) $(OBJS) $(HC_BOOT_LIBS)
243 endif
244 endif
245
246 #----------------------------------------
247 #       C programs
248
249 ifneq "$(C_PROG)" ""
250 all :: $(C_PROG)
251
252 $(C_PROG) :: $(C_OBJS)
253         $(CC) -o $@ $(CC_OPTS) $(LD_OPTS) $(C_OBJS) $(LIBS)
254 endif
255
256 #----------------------------------------
257 #       Libraries/archives
258 #
259 # Build $(LIBRARY) from $(LIBOBJS)+$(STUBOBJS)
260 #
261 # Inputs:
262 #   $(LIBOBJS)
263 #   $(STUBOBJS)
264 #
265 # Outputs:
266 #   Rule to build $(LIBRARY)
267
268 ifneq "$(LIBRARY)" ""
269 all :: $(LIBRARY)
270
271 ifneq "$(way)" "i"
272 define BUILD_LIB
273 $(RM) $@
274 $(AR) $(AR_OPTS) $@ $(STUBOBJS) $(LIBOBJS)
275 $(RANLIB) $@
276 endef
277 else
278 define BUILD_LIB
279 $(RM) $@
280 al -out:$@ $(STUBOBJS) $(LIBOBJS)
281 endef
282 endif
283
284 #
285 # For Haskell object files, we might have chosen to split
286 # up the object files. Test for whether the library being
287 # built is consisting of Haskell files by (hackily) checking
288 # whether HS_SRCS is empty or not.
289 #
290
291 ifneq "$(HS_SRCS)" ""
292 ifeq "$(SplitObjs)" "YES"
293
294 # can't split objs in way 'u', so we disable it here
295 ifneq "$(way)" "u"
296
297 SRC_HC_OPTS += -split-objs
298
299 # We generate the archive into a temporary file libfoo.a.tmp, then
300 # rename it at the end.  This avoids the problem that ar may sometimes
301 # fail, leaving a partially built archive behind.
302 ifeq "$(ArSupportsInput)" ""
303 define BUILD_LIB
304 $(RM) $@ $@.tmp
305 (echo $(STUBOBJS) $(C_OBJS) $(GC_C_OBJS); $(FIND) $(patsubst %.$(way_)o,%_split,$(HS_OBJS)) -name '*.$(way_)o' -print) | xargs $(AR) $@
306 $(RANLIB) $@
307 endef
308 else
309 define BUILD_LIB
310 $(RM) $@ $@.tmp
311 echo $(STUBOBJS) > $@.list
312 echo $(C_OBJS) >> $@.list
313 echo $(GC_C_OBJS) >> $@.list
314 $(FIND) $(patsubst %.$(way_)o,%_split,$(HS_OBJS)) -name '*.$(way_)o' -print >> $@.list
315 $(AR) $(AR_OPTS) $@ $(ArSupportsInput) $@.list
316 $(RM) $@.list
317 $(RANLIB) $@
318 endef
319 endif
320
321 # Extra stuff for compiling Haskell files with $(SplitObjs):
322
323 HC_SPLIT_PRE = \
324     $(RM) $@; if [ ! -d $(basename $@)_split ]; then mkdir $(basename $@)_split; else \
325     $(FIND) $(basename $@)_split -name '*.$(way_)o' -print | xargs $(RM) __rm_food; fi
326 ifeq "$(GhcWithInterpreter)" "YES"
327 HC_SPLIT_POST = (cd $(basename $@)_split && $(LD) -r $(LD_X) -o ../$(notdir $@) *.$(way_)o)
328 else
329 HC_SPLIT_POST = touch $@
330 endif # GhcWithInterpreter == YES
331
332 SRC_HC_PRE_OPTS  += $(HC_SPLIT_PRE);
333 SRC_HC_POST_OPTS += $(HC_SPLIT_POST);
334
335 #
336 # If (Haskell) object files are split, cleaning up 
337 # consist of descending into the directories where
338 # the myriads of object files have been put.
339 #
340
341 extraclean ::
342         $(FIND) $(patsubst %.$(way_)o,%_split,$(HS_OBJS)) -name '*.$(way_)o' -print | xargs $(RM) __rm_food
343         -rmdir $(patsubst %.$(way_)o,%_split,$(HS_OBJS)) > /dev/null 2>&1
344
345 endif # $(way) == u
346 endif # $(SplitObjs)
347 endif # $(HS_SRCS)
348
349 #
350 # Remove local symbols from library objects if requested.
351 #
352
353 ifeq "$(StripLibraries)" "YES"
354 ifeq "$(SplitObjs)" "YES"
355 SRC_HC_POST_OPTS += \
356   for i in $(basename $@)_split/*; do \
357         $(LD) -r $(LD_X) -o $$i.tmp $$i; \
358         $(MV) $$i.tmp $$i; \
359   done
360 else
361 SRC_HC_POST_OPTS += \
362   $(LD) -r $(LD_X) -o $@.tmp $@; $(MV) $@.tmp $@
363 endif # SplitObjs
364 endif # StripLibraries
365
366 # Note: $(STUBOBJS) isn't depended on here, but included when building the lib.
367 #       (i.e., the assumption is that $(STUBOBJS) are created as a side-effect
368 #       of building $(LIBOBJS)).
369 $(LIBRARY) : $(LIBOBJS)
370         $(BUILD_LIB)
371 endif # LIBRARY = ""
372
373 #----------------------------------------
374 #       Building Win32 DLLs
375 #
376
377 ifeq "$(DLLized)" "YES"
378 SRC_CC_OPTS += -DDLLized
379
380 ifneq "$(PACKAGE)" ""
381
382 SRC_BLD_DLL_OPTS += --export-all --output-def=HS$(PACKAGE)$(_cbits)$(_way).def DllVersionInfo.$(way_)o
383
384 ifneq "$(PACKAGE) $(IS_CBITS_LIB)" "std YES"
385 ifneq "$(PACKAGE)" "rts"
386 SRC_BLD_DLL_OPTS += -lHSstd_cbits_imp -L$(GHC_LIB_DIR)/std/cbits
387 SRC_BLD_DLL_OPTS += -lHSrts_$(way_)imp -L$(GHC_RUNTIME_DIR)
388 ifneq "$(PACKAGE)" "std"
389   ifeq "$(IS_CBITS_LIB)" ""
390   SRC_BLD_DLL_OPTS += -lHSstd_$(way_)imp -L$(GHC_LIB_DIR)/std 
391   endif
392 endif
393 endif
394 endif
395
396 SRC_BLD_DLL_OPTS += -lgmp -L. -L$(GHC_RUNTIME_DIR)/gmp
397 ifeq "$(IS_CBITS_LIB)" ""
398 SRC_BLD_DLL_OPTS += $(patsubst %,-lHS%_$(way_)imp, $(PACKAGE_DEPS))
399 SRC_BLD_DLL_OPTS += $(patsubst %,-L../%, $(PACKAGE_DEPS))
400 endif
401 ifneq "$(HAS_CBITS)" ""
402 SRC_BLD_DLL_OPTS += -lHS$(PACKAGE)_cbits_imp -Lcbits
403 endif
404 SRC_BLD_DLL_OPTS += -lwsock32 -lwinmm
405
406 endif # PACKAGE != ""
407
408 SplitObjs = NO 
409
410 ifneq "$(LIBRARY)" ""
411
412 all :: DllVersionInfo.$(way_)o
413
414 ifeq "$(DLL_NAME)" ""
415 DLL_NAME = $(patsubst %.a,%.dll,$(subst lib,,$(LIBRARY)))
416 endif
417
418 ifneq "$(DLL_NAME)" ""
419 DLL_NAME := $(DLL_PEN)/$(DLL_NAME)
420 endif
421
422 all :: $(DLL_NAME)
423
424 ifeq "$(DLL_IMPLIB_NAME)" ""
425 DLL_IMPLIB_NAME = $(patsubst %.a,%_imp.a,$(LIBRARY))
426 endif
427
428 $(DLL_NAME) :: $(LIBRARY)
429         $(BLD_DLL) --output-lib $(DLL_IMPLIB_NAME) -o $(DLL_NAME) $(LIBRARY) $(BLD_DLL_OPTS)
430 endif # LIBRARY != ""
431
432 endif # DLLized
433
434 #
435 # Version information is baked into a DLL by having the DLL include DllVersionInfo.o.
436 # The version info contains two user tweakables: DLL_VERSION and DLL_VERSION_NAME.
437 # (both are given sensible defaults though.)
438 #
439 # Note: this will not work as expected with Cygwin B20.1; you need a more recent
440 #       version of binutils (to pick up windres bugfixes.)
441
442 ifndef DLL_VERSION
443 DLL_VERSION=$(ProjectVersion)
444 endif
445
446 ifndef DLL_VERSION_NAME
447 DLL_VERSION_NAME="http://www.haskell.org/ghc"
448 endif
449
450 ifndef DLL_DESCRIPTION
451 DLL_DESCRIPTION="A GHC-compiled DLL"
452 endif
453
454 ifndef EXE_VERSION
455 EXE_VERSION=$(ProjectVersion)
456 endif
457
458 ifndef EXE_VERSION_NAME
459 EXE_VERSION_NAME="http://www.haskell.org/ghc"
460 endif
461
462 ifndef EXE_DESCRIPTION
463 EXE_DESCRIPTION="A GHC-compiled binary"
464 endif
465
466 #
467 # Little bit of lo-fi mangling to get at the right set of settings depending
468 # on whether we're generating the VERSIONINFO for a DLL or EXE
469
470 DLL_OR_EXE=$(subst VersionInfo.$(way_)rc,,$@)
471 VERSION_FT=$(subst Dll, 0x2L, $(subst Exe, 0x1L, $(DLL_OR_EXE)))
472 VERSION_RES_NAME=$(subst Exe,$(EXE_VERSION_NAME), $(subst Dll, $(DLL_VERSION_NAME),$(DLL_OR_EXE)))
473 VERSION_RES=$(subst Exe,$(EXE_VERSION), $(subst Dll, $(DLL_VERSION),$(DLL_OR_EXE)))
474 VERSION_DESC=$(subst Exe,$(EXE_DESCRIPTION), $(subst Dll, $(DLL_DESCRIPTION),$(DLL_OR_EXE)))
475
476 DllVersionInfo.$(way_)rc ExeVersionInfo.$(way_)rc:
477         $(RM) DllVersionInfo.$(way_)rc
478         echo "1 VERSIONINFO"                > $@
479         echo "FILEVERSION 1,0,0,1"         >> $@
480         echo "PRODUCTVERSION 1,0,0,1"      >> $@
481         echo "FILEFLAGSMASK 0x3fL"         >> $@
482         echo "FILEOS 0x4L"                 >> $@
483         echo "FILETYPE $(VERSION_FT)"      >> $@
484         echo "FILESUBTYPE 0x0L"            >> $@
485         echo "BEGIN"                       >> $@
486         echo " BLOCK \"StringFileInfo\""   >> $@
487         echo " BEGIN"                      >> $@
488         echo "  BLOCK \"040904B0\""        >> $@
489         echo "  BEGIN"                     >> $@
490         echo "   VALUE \"CompanyName\", \"$(VERSION_RES_NAME)\\0\"" >> $@
491         echo "   VALUE \"FileVersion\", \"$(VERSION_RES)\\0\"" >> $@
492         echo "   VALUE \"ProductVersion\", \"$(VERSION_RES)\\0\"" >> $@
493         echo "   VALUE \"FileDescription\", \"$(VERSION_DESC)\\0\"" >> $@
494         echo "  END" >> $@
495         echo " END" >> $@
496         echo " BLOCK \"VarFileInfo\""  >> $@
497         echo " BEGIN" >> $@
498         echo "  VALUE \"Translation\", 0x0409, 1200" >> $@
499         echo " END" >> $@
500         echo "END" >> $@
501
502 #----------------------------------------
503 #       Script programs
504
505 ifneq "$(SCRIPT_PROG)" ""
506
507 # To produce a fully functional script, you may
508 # have to add some configuration variables at the top of 
509 # the script, i.e., the compiler driver needs to know
510 # the path to various utils in the build tree for instance.
511 #
512 # To have the build rule for the script automatically do this
513 # for you, set the variable SCRIPT_SUBST_VARS to the list of
514 # variables you need to put in.
515
516 #
517 # SCRIPT_SUBST creates a string of echo commands that
518 # will when evaluated append the (perl)variable name and its value 
519 # to the target it is used for, i.e.,
520 #
521 #    A=foo
522 #    B=bar
523 #    SCRIPT_SUBST_VARS = A B
524 #    SCRIPT_SUBST=echo "$""A=\"foo\";" >> $@; echo "$""B=\"bar\";" >> $@
525 #
526 #    so if you have a rule like the following
527 #    
528 #     foo:
529 #         @(RM) $@
530 #         @(TOUCH) $@
531 #         @eval $(SCRIPT_SUBST)
532 #
533 #    `make foo' would create a file `foo' containing the following
534 #
535 #    % cat foo
536 #    $A=foo;
537 #    $B=bar;
538 #    %
539 #
540 # ToDo: make this work for shell scripts (drop the initial $).
541 #
542 ifeq "$(INTERP)" "$(SHELL)"
543 SCRIPT_SUBST=$(foreach val,$(SCRIPT_SUBST_VARS),"echo \"$(val)=\\\"$($(val))\\\";\" >> $@;")
544 else
545 SCRIPT_SUBST=$(foreach val,$(SCRIPT_SUBST_VARS),"echo \"$$\"\"$(val)=\\\"$($(val))\\\";\" >> $@;")
546 endif
547
548 all :: $(SCRIPT_PROG)
549
550 $(SCRIPT_PROG) : $(SCRIPT_OBJS)
551         $(RM) $@
552         @echo Creating $@...
553 ifeq "$(INTERP)" "perl"
554         echo "#! "$(PERL) > $@
555 else
556 ifneq "$(INTERP)" ""
557         @echo "#!"$(INTERP) > $@
558 else
559         @touch $@
560 endif
561 endif
562 ifneq "$(SCRIPT_PREFIX_FILES)" ""
563         @cat $(SCRIPT_PREFIX_FILES) >> $@
564 endif
565 ifneq "$(SCRIPT_SUBST)" ""
566         @eval $(SCRIPT_SUBST) 
567 endif
568         @cat $(SCRIPT_OBJS) >> $@
569         @chmod a+x $@
570         @echo Done.
571 endif
572
573 # ---------------------------------------------------------------------------
574 # Symbolic links
575
576 # links to programs: we sometimes install a program as
577 # <name>-<version> with a link from <name> to the real program.
578
579 ifneq "$(LINK)" ""
580
581 all :: $(LINK)
582
583 CLEAN_FILES += $(LINK)
584
585 ifeq "$(LINK_TARGET)" ""
586 ifneq "$(SCRIPT_PROG)" ""
587 LINK_TARGET = $(SCRIPT_PROG)
588 else
589 ifneq "$(HS_PROG)" ""
590 LINK_TARGET = $(HS_PROG)
591 else
592 ifneq "$(C_PROG)" ""
593 LINK_TARGET = $(C_PROG)
594 else
595 LINK_TARGET = dunno
596 endif
597 endif
598 endif
599 endif
600
601 #
602 # Don't want to overwrite $(LINK)s that aren't symbolic
603 # links. Testing for symbolic links is problematic to do in
604 # a portable fashion using a /bin/sh test, so we simply rely
605 # on perl.
606 #
607 $(LINK) : $(LINK_TARGET)
608         @if ( $(PERL) -e '$$fn="$(LINK)"; exit ((! -f $$fn || -l $$fn) ? 0 : 1);' ); then \
609            echo "Creating a symbolic link from $(LINK_TARGET) to $(LINK)"; \
610            $(RM) $(LINK); \
611            $(LN_S) $(LINK_TARGET) $(LINK); \
612          else \
613            echo "Creating a symbolic link from $(LINK_TARGET) to $(LINK) failed: \`$(LINK)' already exists"; \
614            echo "Perhaps remove \`$(LINK)' manually?"; \
615            exit 1; \
616          fi;
617
618
619 #
620 # install links to script drivers.
621 #
622 install ::
623         @$(INSTALL_DIR) $(bindir)
624         @if ( $(PERL) -e '$$fn="$(bindir)/$(LINK)"; exit ((! -f $$fn || -l $$fn) ? 0 : 1);' ); then \
625            echo "Creating a symbolic link from $(LINK_TARGET) to $(LINK) in $(bindir)"; \
626            $(RM) $(bindir)/$(LINK); \
627            $(LN_S) $(LINK_TARGET) $(bindir)/$(LINK); \
628          else \
629            echo "Creating a symbolic link from $(LINK_TARGET) to $(LINK) in $(bindir) failed: \`$(bindir)/$(LINK)' already exists"; \
630            echo "Perhaps remove \`$(bindir)/$(LINK)' manually?"; \
631            exit 1; \
632          fi;
633
634 endif # LINK 
635
636
637 ###########################################
638 #
639 #       Targets: install install-strip uninstall
640 #
641 ###########################################
642
643 # For each of these variables that is defined, you
644 # get one install rule
645 #
646 #       INSTALL_PROGS        executable programs in $(bindir)
647 #       INSTALL_SCRIPTS      executable scripts in $(bindir)
648 #       INSTALL_LIBS         platform-dependent libraries in $(libdir) (ranlib'ed)
649 #       INSTALL_LIB_SCRIPTS  platform-dependent scripts   in $(libdir)
650 #       INSTALL_LIBEXECS     platform-dependent execs in $(libdir)
651 #       INSTALL_DATAS        platform-independent files in $(datadir)
652 #       INSTALL_IFACES       platform-dependent interface files in $(ifacedir)
653 #
654 # If the installation directory variable is undefined, the install rule simply
655 # emits a suitable error message.
656 #
657 # Remember, too, that the installation directory variables ($(bindir) and
658 # friends can be overridden from their original settings in mk/config.mk.in
659 # || mk/build.mk
660 #
661 .PHONY: install install-docs installdirs install-strip install-dirs uninstall install-docs show-install
662
663 show-install :
664         @echo "bindir = $(bindir)"
665         @echo "libdir = $(libdir)"
666         @echo "libexecdir = $(libexecdir)  # by default, same as libdir"
667         @echo "datadir = $(datadir)  # unused for ghc project"
668
669 #
670 # Sometimes useful to separate out the creation of install directories 
671 # from the installation itself.
672 #
673 install-dirs ::
674         @$(INSTALL_DIR) $(bindir)
675         @$(INSTALL_DIR) $(libdir)
676         @$(INSTALL_DIR) $(libexecdir)
677         @$(INSTALL_DIR) $(datadir)
678
679 # Better do this first...
680 # but we won't for the moment, do it on-demand from
681 # within the various install targets instead.
682 #install:: install-dirs
683
684 #
685 # Setting user/group ownership for the installed entities
686 #
687 ifneq "$(INSTALL_OWNER)" ""
688 SRC_INSTALL_OPTS += -o $(INSTALL_OWNER)
689 endif
690 ifneq "$(INSTALL_GROUP)" ""
691 SRC_INSTALL_OPTS += -g $(INSTALL_GROUP)
692 endif
693
694
695 ifneq "$(INSTALL_PROGS)" ""
696
697 #
698 # Here's an interesting one - when using the win32 version
699 # of install (provided via the cygwin toolkit), we have to
700 # supply the .exe suffix, *if* there's no other suffix.
701 #
702 # The rule below does this by ferreting out the suffix of each
703 # entry in the INSTALL_PROGS list. If there's no suffix, use
704 # $(exeext).
705
706 INSTALL_PROGS := $(foreach p, $(INSTALL_PROGS), $(addsuffix $(if $(suffix $(p)),,$(exeext)), $(basename $(p))))
707
708 install:: $(INSTALL_PROGS)
709         @$(INSTALL_DIR) $(bindir)
710         @for i in $(INSTALL_PROGS); do \
711                     echo $(INSTALL_PROGRAM) $(INSTALL_BIN_OPTS) $$i $(bindir); \
712                     $(INSTALL_PROGRAM) $(INSTALL_BIN_OPTS) $$i $(bindir) ;  \
713         done
714 endif
715
716 #
717 # Just like INSTALL_PROGS, but prefix with install sites bin/lib/data and
718 # install without stripping.
719 #
720 ifneq "$(INSTALL_SCRIPTS)" ""
721 install:: $(INSTALL_SCRIPTS)
722         @$(INSTALL_DIR) $(bindir)
723         for i in $(INSTALL_SCRIPTS); do \
724                 $(INSTALL_SCRIPT) $(INSTALL_OPTS) $$i $(bindir); \
725         done
726 endif
727
728 ifneq "$(INSTALL_LIB_SCRIPTS)" ""
729 install:: $(INSTALL_LIB_SCRIPTS)
730         @$(INSTALL_DIR) $(libdir)
731         for i in $(INSTALL_LIB_SCRIPTS); do \
732                 $(INSTALL_SCRIPT) $(INSTALL_OPTS) $$i $(libdir); \
733         done
734 endif
735
736 ifneq "$(INSTALL_LIBEXEC_SCRIPTS)" ""
737 install:: $(INSTALL_LIBEXEC_SCRIPTS)
738         @$(INSTALL_DIR) $(libexecdir)
739         for i in $(INSTALL_LIBEXEC_SCRIPTS); do \
740                 $(INSTALL_SCRIPT) $(INSTALL_OPTS) $$i $(libexecdir); \
741         done
742 endif
743
744 ifneq "$(INSTALL_LIBS)" ""
745 install:: $(INSTALL_LIBS)
746         @$(INSTALL_DIR) $(libdir)
747         for i in $(INSTALL_LIBS); do \
748                 case $$i in \
749                   *.a) \
750                     $(INSTALL_DATA) $(INSTALL_OPTS) $$i $(libdir); \
751                     $(RANLIB) $(libdir)/`basename $$i` ;; \
752                   *.dll) \
753                     $(INSTALL_DATA) -s $(INSTALL_OPTS) $$i $(libdir) ;; \
754                   *.so) \
755                     $(INSTALL_SHLIB) $(INSTALL_OPTS) $$i $(libdir) ;; \
756                   *) \
757                     $(INSTALL_DATA) $(INSTALL_OPTS) $$i $(libdir); \
758                 esac; \
759         done
760 endif
761
762 ifneq "$(INSTALL_LIBEXECS)" ""
763 #
764 # See above comment next to defn of INSTALL_PROGS for what
765 # the purpose of this one-liner is.
766
767 INSTALL_LIBEXECS := $(foreach p, $(INSTALL_LIBEXECS), $(addsuffix $(subst _,,$(subst __,$(exeext),_$(suffix $(p))_)), $(basename $(p))))
768
769 install:: $(INSTALL_LIBEXECS)
770         @$(INSTALL_DIR) $(libexecdir)
771         -for i in $(INSTALL_LIBEXECS); do \
772                 $(INSTALL_PROGRAM) $(INSTALL_BIN_OPTS) $$i $(libexecdir); \
773         done
774 endif
775
776 ifneq "$(INSTALL_DATAS)" ""
777 install:: $(INSTALL_DATAS)
778         @$(INSTALL_DIR) $(datadir)
779         for i in $(INSTALL_DATAS); do \
780                 $(INSTALL_DATA) $(INSTALL_OPTS) $$i $(datadir); \
781         done
782 endif
783
784 ifneq "$(INSTALL_IFACES)" ""
785 install:: $(INSTALL_IFACES)
786         @$(INSTALL_DIR) $(ifacedir)
787         for i in $(INSTALL_IFACES); do \
788                 $(INSTALL_DATA) $(INSTALL_OPTS) $$i $(ifacedir); \
789         done
790 endif
791
792 ifneq "$(INSTALL_IFACES_WITH_DIRS)" ""
793 install:: $(INSTALL_IFACES_WITH_DIRS)
794         @$(INSTALL_DIR) $(ifacedir)
795         for i in $(INSTALL_IFACES_WITH_DIRS); do \
796                 $(INSTALL_DATA) $(INSTALL_OPTS) $$i $(ifacedir)/`dirname $$i`; \
797         done
798 endif
799
800 ifneq "$(INSTALL_INCLUDES)" ""
801 install:: $(INSTALL_INCLUDES)
802         @$(INSTALL_DIR) $(includedir)
803         for i in $(INSTALL_INCLUDES); do \
804                 $(INSTALL_DATA) $(INSTALL_OPTS) $$i $(includedir); \
805         done
806 endif
807
808 ifneq "$(INSTALL_DOCS)" ""
809 ifneq "$(XMLDocWays)" ""
810 install-docs:: $(INSTALL_DOCS)
811         @$(INSTALL_DIR) $(datadir)      
812         for i in $(INSTALL_DOCS); do \
813                 $(INSTALL_DATA) $(INSTALL_OPTS) $$i $(datadir); \
814         done
815 endif
816 endif
817
818 # TODO: The following could be an entry for an Obfuscated Makefile Contest...
819 ifneq "$(INSTALL_XML_DOC)" ""
820 ifneq "$(XMLDocWays)" ""
821 install-docs:: $(foreach i,$(XMLDocWays),$(INSTALL_XML_DOC)$(patsubst %.html-no-chunks,%.html,$(patsubst %.htmlhelp,%.chm,$(patsubst %.html,%/index.html,.$(i)))))
822         @$(INSTALL_DIR) $(datadir)      
823         @for i in $(XMLDocWays); do \
824                 if [ $$i = "html" ]; then \
825                         $(INSTALL_DIR) $(datadir)/html; \
826                         $(INSTALL_DIR) $(datadir)/html/$(INSTALL_XML_DOC); \
827                         echo "( cd $(INSTALL_XML_DOC) && $(CP) * $(datadir)/html/$(INSTALL_XML_DOC) )" ; \
828                         ( cd $(INSTALL_XML_DOC) && $(CP) * $(datadir)/html/$(INSTALL_XML_DOC) ) ; \
829                 else \
830                         echo $(INSTALL_DATA) $(INSTALL_OPTS) $(INSTALL_XML_DOC)`echo .$$i | sed s/\.htmlhelp/.chm/ | sed s/\.html-no-chunks/.html/` $(datadir); \
831                         $(INSTALL_DATA) $(INSTALL_OPTS) $(INSTALL_XML_DOC)`echo .$$i | sed s/\.htmlhelp/.chm/ | sed s/\.html-no-chunks/.html/` $(datadir); \
832                 fi; \
833                 if [ $$i = "html-no-chunks" ]; then \
834                         echo $(CP) $(FPTOOLS_CSS_ABS) $(datadir); \
835                         $(CP) $(FPTOOLS_CSS_ABS) $(datadir); \
836                 fi \
837         done
838 endif
839 endif
840
841 #
842 # Use with care..
843 #
844 uninstall:: 
845         @for i in $(INSTALL_PROGS) "" ; do                      \
846           if test "$$i"; then                                   \
847                 echo rm -f $(bindir)/`basename $$i`;            \
848                 rm -f $(bindir)/`basename $$i`;                 \
849           fi;                                                   \
850         done
851         @for i in $(INSTALL_LIBS) ""; do                        \
852           if test "$$i"; then                                   \
853                 echo rm -f $(libdir)/`basename $$i`;            \
854                 rm -f $(libdir)/`basename $$i`;                 \
855           fi;                                                   \
856         done
857         @for i in $(INSTALL_LIBEXECS) ""; do                    \
858           if test "$$i"; then                                   \
859                 echo rm -f $(libexecdir)/`basename $$i`;        \
860                 rm -f $(libexecdir)/`basename $$i`;             \
861           fi;                                                   \
862         done
863         @for i in $(INSTALL_DATAS) ""; do                       \
864           if test "$$i"; then                                   \
865                 echo rm -f $(datadir)/`basename $$i`;           \
866                 rm -f $(datadir)/`basename $$i`;                \
867           fi;                                                   \
868         done
869
870 #
871 # install-strip is from the GNU Makefile standard.
872 #
873 ifneq "$(way)" ""
874 install-strip::
875         @$(MAKE) EXTRA_INSTALL_OPTS='-s' install                                        
876 endif
877
878 ##############################################################################
879 #
880 #       Targets: check tags show
881 #
882 ##############################################################################
883
884 #------------------------------------------------------------
885 #                       Check
886
887 .PHONY: check
888
889 check:: $(TESTS)
890         @for i in $(filter-out %.lhs .hs, $(TESTS)) ''; do      \
891           if (test -f "$$i"); then              \
892             echo Running: `basename $$i` ;      \
893             cd test; `basename $$i` ;           \
894           fi;                                   \
895         done;
896
897 #------------------------------------------------------------
898 #                       Tags
899
900 .PHONY: TAGS tags
901
902 tags TAGS:: $(TAGS_HS_SRCS) $(TAGS_C_SRCS)
903         @$(RM) TAGS
904         @touch TAGS
905 ifneq "$(TAGS_HS_SRCS)" ""
906         $(HSTAGS) $(HSTAGS_OPTS) $(TAGS_HS_SRCS)
907 endif
908 ifneq "$(TAGS_C_SRCS)" ""
909         etags -a $(TAGS_C_SRCS)
910 endif
911         @( 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?
912
913 #------------------------------------------------------------
914 #                       Makefile debugging
915 # to see the effective value used for a Makefile variable, do
916 #  make show VALUE=MY_VALUE
917 #
918
919 show:
920         @echo '$(VALUE)="$($(VALUE))"'
921
922 ################################################################################
923 #
924 #                       DocBook XML Documentation
925 #
926 ################################################################################
927
928 .PHONY: html html-no-chunks htmlhelp fo dvi ps pdf
929
930 ifneq "$(XML_DOC)" ""
931
932 all :: $(XMLDocWays)
933
934 # multi-file XML document: main document name is specified in $(XML_DOC),
935 # sub-documents (.xml files) listed in $(XML_SRCS).
936
937 ifeq "$(XML_SRCS)" ""
938 XML_SRCS = $(wildcard *.xml)
939 endif
940
941 XML_HTML           = $(addsuffix /index.html,$(basename $(XML_DOC)))
942 XML_HTML_NO_CHUNKS = $(addsuffix .html,$(XML_DOC))
943 XML_HTMLHELP       = $(addsuffix -htmlhelp/index.html,$(basename $(XML_DOC)))
944 XML_FO             = $(addsuffix .fo,$(XML_DOC))
945 XML_DVI            = $(addsuffix .dvi,$(XML_DOC))
946 XML_PS             = $(addsuffix .ps,$(XML_DOC))
947 XML_PDF            = $(addsuffix .pdf,$(XML_DOC))
948
949 $(XML_HTML) $(XML_NO_CHUNKS_HTML) $(XML_FO) $(XML_DVI) $(XML_PS) $(XML_PDF) :: $(XML_SRCS)
950
951 html           :: $(XML_HTML)
952 html-no-chunks :: $(XML_HTML_NO_CHUNKS)
953 htmlhelp       :: $(XML_HTMLHELP)
954 fo             :: $(XML_FO)
955 dvi            :: $(XML_DVI)
956 ps             :: $(XML_PS)
957 pdf            :: $(XML_PDF)
958
959 CLEAN_FILES += $(XML_HTML_NO_CHUNKS) $(XML_FO) $(XML_DVI) $(XML_PS) $(XML_PDF)
960
961 extraclean ::
962         $(RM) -rf $(XML_DOC).out $(FPTOOLS_CSS) $(basename $(XML_DOC)) $(basename $(XML_DOC))-htmlhelp
963
964 validate ::
965         $(XMLLINT) --valid --noout $(XMLLINT_OPTS) $(XML_DOC).xml
966 endif
967
968 ##############################################################################
969 #
970 #       Targets: clean
971 #
972 ##############################################################################
973
974 # we have to be careful about recursion here; since all the clean
975 # targets are recursive, we don't want to make eg. distclean depend on
976 # clean because that would result in far too many recursive calls.
977
978 .PHONY: mostlyclean clean distclean maintainer-clean
979
980 mostlyclean::
981         rm -f $(MOSTLY_CLEAN_FILES)
982
983 # extraclean is used for adding actions to the clean target.
984 extraclean::
985
986 clean:: extraclean
987         rm -f $(MOSTLY_CLEAN_FILES) $(CLEAN_FILES)
988
989 distclean:: extraclean
990         rm -f $(MOSTLY_CLEAN_FILES) $(CLEAN_FILES) $(DIST_CLEAN_FILES)
991
992 maintainer-clean:: extraclean
993         @echo 'This command is intended for maintainers to use; it'
994         @echo 'deletes files that may need special tools to rebuild.'
995         rm -f $(MOSTLY_CLEAN_FILES) $(CLEAN_FILES) $(DIST_CLEAN_FILES) $(MAINTAINER_CLEAN_FILES)
996
997 ################################################################################
998 #
999 #                       Way management
1000 #
1001 ################################################################################
1002
1003 # Here is the ingenious jiggery pokery that allows you to build multiple versions
1004 # of a program in a single build tree.
1005 #
1006 # The ways setup requires the following variables to be set:
1007 #
1008 # Expects:      $(WAYS)                 the possible "way" strings to one of 
1009 #                                       which $(way) will be set
1010
1011
1012 # So how does $(way) ever get set to anything?  Answer, we recursively
1013 # invoke make, setting $(way) on the command line.
1014 # When do we do this recursion?  Answer: whenever the programmer
1015 # asks make to make a target that involves a way suffix.
1016 # We must remember *not* to recurse again; but that's easy: we
1017 # just see if $(way) is set:
1018
1019 ifeq "$(way)" ""
1020
1021 # If $(WAYS) = p mc, then WAY_TARGETS expands to
1022 #       %.p_lhs %.p_hs %.p_o ... %.mc_lhs %.p_hs ...
1023 # and OTHER_WAY_TARGETS to
1024 #       %_p.a %_p %_mc.a %_mc
1025 # where the suffixes are from $(SUFFIXES)
1026 #
1027 # We have to treat libraries and "other" targets differently, 
1028 # because their names are of the form
1029 #       libHS_p.a and Foo_p
1030 # whereas everything else has names of the form
1031 #       Foo.p_o
1032
1033 FPTOOLS_SUFFIXES := o hi hc
1034
1035 WAY_TARGETS     = $(foreach way,$(WAYS),$(foreach suffix, $(FPTOOLS_SUFFIXES), %.$(way)_$(suffix)))
1036 LIB_WAY_TARGETS = $(foreach way,$(WAYS),%_$(way).a %_$(way))
1037
1038 # $@ will be something like Foo.p_o
1039 # $(suffix $@)     returns .p_o
1040 # $(subst .,.p_o)  returns p_o
1041 # $(subst _,.,p_o) returns p.o   (clever)
1042 # $(basename p.o)  returns p
1043
1044 $(WAY_TARGETS) :
1045         $(MAKE) way=$(basename $(subst _,.,$(subst .,,$(suffix $@)))) $@
1046
1047 # $(@F) will be something like libHS_p.a, or Foo_p
1048 # $(basename $(@F)) will be libHS_p, or Foo_p
1049 # The sed script extracts the "p" part.
1050
1051 $(LIB_WAY_TARGETS) :
1052         $(MAKE) $(MFLAGS) $@ way=$(subst .,,$(suffix $(subst _,.,$(basename $@))))
1053
1054 endif   # if way
1055
1056 # -------------------------------------------------------------------------
1057 # Object and interface files have suffixes tagged with their ways
1058
1059 ifneq "$(way)" ""
1060 SRC_HC_OPTS += -hisuf $(way_)hi -hcsuf $(way_)hc -osuf $(way_)o
1061 endif
1062
1063 # -------------------------------------------------------------------------
1064 # Rules to invoke the current target recursively for each way
1065
1066 ifneq "$(WAYS)" ""
1067 ifeq "$(way)" ""
1068
1069 # NB: the targets exclude 
1070 #       boot runtests
1071 # since these are way-independent
1072 all docs TAGS clean distclean mostlyclean maintainer-clean install ::
1073         @echo "------------------------------------------------------------------------"
1074         @echo "===fptools== Recursively making \`$@' for ways: $(WAYS) ..."
1075         @echo "PWD = $(shell pwd)"
1076         @echo "------------------------------------------------------------------------"
1077 # Don't rely on -e working, instead we check exit return codes from sub-makes.
1078         @case '${MFLAGS}' in *-[ik]*) x_on_err=0;; *-r*[ik]*) x_on_err=0;; *) x_on_err=1;; esac; \
1079         for i in $(WAYS) ; do \
1080           echo "------------------------------------------------------------------------"; \
1081           echo "==fptools== $(MAKE) way=$$i $@;"; \
1082           echo "PWD = $(shell pwd)"; \
1083           echo "------------------------------------------------------------------------"; \
1084           $(MAKE) way=$$i --no-print-directory $(MFLAGS) $@ ; \
1085           if [ $$? -eq 0 ] ; then true; else exit $$x_on_err; fi; \
1086         done
1087         @echo "------------------------------------------------------------------------"
1088         @echo "===fptools== Finished recursively making \`$@' for ways: $(WAYS) ..."
1089         @echo "PWD = $(shell pwd)"
1090         @echo "------------------------------------------------------------------------"
1091
1092 endif
1093 endif
1094
1095
1096 ##################################################################
1097 #
1098 #               Recursive stuff
1099 #
1100 # This was once at the top of the file, allegedly because it was
1101 # needed for some targets, e.g. when building DLLs in libraries.  But
1102 # since this reason is a little short on information, and I'm having
1103 # trouble with subdirectory builds happening before the current
1104 # directory when building hslibs (bad interaction with including
1105 # _hsc.o files in the cbits lib) so I'm moving the recursive makes to
1106 # the end --SDM 12/12/2001
1107 #
1108 ##################################################################
1109
1110 # Here are the diabolically clever rules that
1111
1112 # (a) for each "recursive target" <t>
1113 #     propagates "make <t>" to directories in SUBDIRS
1114 #
1115 # (b) when SUBDIRS is empty,
1116 #     for each "multi-way-target" <t>
1117 #     calls "make way=w <t>" for each w in $(WAYS)
1118 #
1119 #     This has the effect of making the standard target
1120 #     in each of the specified ways (as well as in the normal way
1121
1122 # Controlling variables
1123 #       WAYS    = extra (beyond the normal way) ways to build things in
1124 #       SUBDIRS = subdirectories to recurse into
1125
1126 # No ways, so iterate over the SUBDIRS
1127
1128 # note about recursively invoking make: we'd like make to drop all the
1129 # way back to the top level if it fails in any of the
1130 # sub(sub-...)directories.  This is done by setting the -e flag to the
1131 # shell during the loop, which causes an immediate failure if any of
1132 # the shell commands fail.
1133
1134 # One exception: if the user gave the -i or -k flag to make in the
1135 # first place, we'd like to reverse this behaviour.  So we check for
1136 # these flags, and set the -e flag appropriately.  NOTE: watch out for
1137 # the --no-print-directory flag which is passed to recursive
1138 # invocations of make.
1139 #
1140 #ifeq "$(way)" ""
1141 ifneq "$(SUBDIRS)" ""
1142
1143 # we override the 'boot', 'all' and 'install' targets in the top
1144 # level Makefile. Some of the sub-projects also set 'boot' to empty.
1145
1146 ifeq "$(NO_ALL_TARGET)" "YES"
1147 ALL_TARGET     =
1148 else
1149 ALL_TARGET     = all
1150 endif
1151
1152 ifeq "$(NO_BOOT_TARGET)" "YES"
1153 BOOT_TARGET    =
1154 else
1155 BOOT_TARGET    = boot
1156 endif
1157
1158 ifeq "$(NO_INSTALL_TARGET)" "YES"
1159 INSTALL_TARGET =
1160 INSTALL_DOCS_TARGET =
1161 else
1162 INSTALL_TARGET = install
1163 INSTALL_DOCS_TARGET = install-docs
1164 endif
1165
1166 $(ALL_TARGET) docs runtests $(BOOT_TARGET) TAGS clean distclean mostlyclean maintainer-clean $(INSTALL_TARGET) $(INSTALL_DOCS_TARGET) html ps dvi txt::
1167         @echo "------------------------------------------------------------------------"
1168         @echo "===fptools== Recursively making \`$@' in $(SUBDIRS) ..."
1169         @echo "PWD = $(shell pwd)"
1170         @echo "------------------------------------------------------------------------"
1171 # Don't rely on -e working, instead we check exit return codes from sub-makes.
1172         @case '${MFLAGS}' in *-[ik]*) x_on_err=0;; *-r*[ik]*) x_on_err=0;; *) x_on_err=1;; esac; \
1173         for i in $(SUBDIRS); do \
1174           echo "------------------------------------------------------------------------"; \
1175           echo "==fptools== $(MAKE) $@ $(MFLAGS);"; \
1176           echo " in $(shell pwd)/$$i"; \
1177           echo "------------------------------------------------------------------------"; \
1178           $(MAKE) --no-print-directory -C $$i $(MFLAGS) $@; \
1179           if [ $$? -eq 0 -o $$x_on_err -eq 0 ] ;  then true; else exit 1; fi; \
1180         done
1181         @echo "------------------------------------------------------------------------"
1182         @echo "===fptools== Finished making \`$@' in $(SUBDIRS) ..."
1183         @echo "PWD = $(shell pwd)"
1184         @echo "------------------------------------------------------------------------"
1185
1186 endif
1187 #endif
1188
1189 #
1190 # Selectively building subdirectories.
1191 #
1192 #
1193 ifneq "$(SUBDIRS)" ""
1194 $(SUBDIRS) ::
1195           $(MAKE) -C $@ $(MFLAGS)
1196 endif