blob: 515754985f50e63c8fde8477978b895083dad001 (
plain)
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
#
# Following command helps to cheate SUBDIRS list:
# $ tree -fid .
#
SUBDIRS := atril \
caja \
caja-actions \
caja-dropbox \
caja-extensions \
engrampa \
eom \
libmatekbd \
libmatemixer \
libmateweather \
marco \
mate-applets \
mate-backgrounds \
mate-calc \
mate-common \
mate-control-center \
mate-desktop \
mate-icon-theme \
mate-indicator-applet \
mate-media \
mate-menus \
mate-netbook \
mate-notification-daemon \
mate-panel \
mate-polkit \
mate-power-manager \
mate-screensaver \
mate-sensors-applet \
mate-session-manager \
mate-settings-daemon \
mate-system-monitor \
mate-terminal \
mate-themes \
mate-user-guide \
mate-user-share \
mate-utils \
mozo \
pluma \
pluma-plugins \
python-caja
all-recursive downloads_clean-recursive:
@set fnord $(MAKEFLAGS); amf=$$2; \
target=`echo $@ | sed s/-recursive//`; \
list='$(SUBDIRS)'; for subdir in $$list; do \
echo "Making $$target in $$subdir"; \
local_target="$$target"; \
(cd $$subdir && $(MAKE) $$fnord $$local_target) \
|| case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
done; test -z "$$fail"
all: all-recursive
downloads_clean: downloads_clean-recursive
.PHONY: all-recursive downloads_clean-recursive all downloads_clean
|