blob: 9a9d0881a46ee8ceeaf6fc5ec48e6a97fd242b46 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
# This file is included in the makefiles of the non-leaf nodes
# Thus the various targets in this file have to trickle down
# into the subdirectories
# List the subdirectories and call the target for each one of them
################################################################
# RECURSE
################################################################
# Listing the subdirectories
SUBDIRS = $(patsubst %/Makefile,%,$(wildcard */Makefile))
RECURSE-DEPENDS = $(patsubst %,%.traverse,$(SUBDIRS))
all: recurse
debug: recurse
clean: recurse
compile: recurse
c-run: recurse
matlab-run: recurse
mcc-run: recurse
recurse: $(RECURSE-DEPENDS)
time-run: recurse
preload-run: recurse
run: recurse
# MAKECMDGOALS contains the gmake target specified on the command line
# it is defined automatically by gmake
%.traverse:
$(MAKE) -C $* $(MAKECMDGOALS)
|