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