Tweak mk/sub-makefile.mk
[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 # We must not execute multiple recursive invocations of make in parallel.
20 .NOTPARALLEL:
21
22 STD_TARGETS = all clean distclean maintainer_clean install html ps pdf
23
24 # The + tells make that we're recursively invoking make, otherwise 'make -j2'
25 # goes wrong.
26 $(STD_TARGETS): 
27         +$(TOPMAKE) $@_$(dir)
28
29 OTHERTARGETS=$(filter-out $(STD_TARGETS) $(SPEC_TARGETS),$(MAKECMDGOALS))
30 .PHONY: $(OTHERTARGETS)
31 $(OTHERTARGETS):
32         +$(TOPMAKE) $(dir)/$@