Replace uses of the old catch function with the new one
[ghc-hetmet.git] / mk / sub-makefile.mk
1 # This file is included by all the "stub makefiles" in every directory
2 # in the tree except the root.  Its job is to invoke $(MAKE) on the
3 # top-level Makefile, but modifying the target so that it applies to
4 # the current directory only.
5 #
6 # eg.
7 #  make foo.o  ==>  make -C $(TOP) dir/foo.o
8 #  make all    ==>  make -C $(TOP) all_dir
9 #  make clean  ==>  make -C $(TOP) clean_dir
10 #
11
12 # Important, otherwise we get silly built-in rules:
13 .SUFFIXES:
14
15 TOPMAKE = $(MAKE) -C $(TOP)
16
17 default: all
18
19 fast: all
20
21 FAST_MAKE_OPTS =\
22   $(dir)_dist_NO_BUILD_DEPS=YES \
23   $(dir)_dist-boot_NO_BUILD_DEPS=YES \
24   $(dir)_dist-install_NO_BUILD_DEPS=YES \
25   OMIT_PHASE_1=YES OMIT_PHASE_2=YES OMIT_PHASE_3=YES
26
27 ifneq "$(filter fast,$(MAKECMDGOALS))" ""
28 EXTRA_MAKE_OPTS += $(FAST_MAKE_OPTS)
29 else
30 ifeq "$(FAST)" "YES"
31 EXTRA_MAKE_OPTS += $(FAST_MAKE_OPTS)
32 endif
33 endif
34
35 # We must not execute multiple recursive invocations of make in parallel.
36 .NOTPARALLEL:
37
38 STD_TARGETS = all clean distclean maintainer_clean install html ps pdf
39 DIRECTORY_INDEPENDENT_TARGETS = show
40
41 # The + tells make that we're recursively invoking make, otherwise 'make -j2'
42 # goes wrong.
43 $(STD_TARGETS): 
44         +$(TOPMAKE) $@_$(dir) $(EXTRA_MAKE_OPTS)
45
46 $(DIRECTORY_INDEPENDENT_TARGETS):
47         +$(TOPMAKE) $@ $(EXTRA_MAKE_OPTS)
48
49 OTHERTARGETS=$(filter-out fast help show $(STD_TARGETS) $(SPEC_TARGETS),$(MAKECMDGOALS))
50 .PHONY: $(OTHERTARGETS)
51 $(OTHERTARGETS):
52         +$(TOPMAKE) $(dir)/$@ $(EXTRA_MAKE_OPTS)
53
54 .PHONY: help
55 help : sub-help
56
57 .PHONY: sub-help
58 sub-help :
59         @echo "You are in subdirectory \"$(dir)\"."
60         @echo "Useful targets in this directory:"
61         @cat $(TOP)/SUBMAKEHELP