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