summaryrefslogtreecommitdiff
path: root/GNOME/core/Makefile
blob: 251664ae24200eb53c11ff9f3d58d7a68fe9b0f5 (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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
#
# Following command helps to cheate SUBDIRS list:
# $ tree -fid .
#

SUBDIRS := GConf                          \
           NetworkManager                 \
           adwaita-icon-theme             \
           amtk                           \
           at-spi2-atk                    \
           at-spi2-core                   \
           atk                            \
           atkmm                          \
           baobab                         \
           cantarell-fonts                \
           caribou                        \
           clutter                        \
           clutter-gst                    \
           clutter-gtk                    \
           cogl                           \
           dconf                          \
           empathy                        \
           eog                            \
           epiphany                       \
           esound                         \
           evince                         \
           evolution-data-server          \
           folks                          \
           gcr                            \
           gdk-pixbuf                     \
           gdk-pixbuf-xlib                \
           gdm                            \
           geocode-glib                   \
           gjs                            \
           glib                           \
           glib-networking                \
           glib2                          \
           glibmm                         \
           gmime                          \
           gnome-backgrounds              \
           gnome-bluetooth                \
           gnome-calculator               \
           gnome-contacts                 \
           gnome-control-center           \
           gnome-desktop                  \
           gnome-dictionary               \
           gnome-disk-utility             \
           gnome-font-viewer              \
           gnome-keyring                  \
           gnome-menus                    \
           gnome-online-accounts          \
           gnome-online-miners            \
           gnome-packagekit               \
           gnome-screenshot               \
           gnome-session                  \
           gnome-settings-daemon          \
           gnome-shell                    \
           gnome-shell-extensions         \
           gnome-system-log               \
           gnome-system-monitor           \
           gnome-terminal                 \
           gnome-themes-standard          \
           gnome-user-docs                \
           gnome-user-share               \
           gnome-video-effects            \
           gobject-introspection          \
           grilo                          \
           grilo-plugins                  \
           gsettings-desktop-schemas      \
           gssdp                          \
           gtk                            \
           gtk+                           \
           gtk+2                          \
           gtk+3                          \
           gtk-doc                        \
           gtk-engines                    \
           gtkmm                          \
           gtksourceview                  \
           gucharmap                      \
           gupnp                          \
           gupnp-igd                      \
           gvfs                           \
           json-glib                      \
           libadwaita                     \
           libart_lgpl                    \
           libchamplain                   \
           libcroco                       \
           libgdata                       \
           libgee                         \
           libglade                       \
           libgnomekbd                    \
           libgsf                         \
           libgsystem                     \
           libgtop                        \
           libgudev                       \
           libgweather                    \
           libgxps                        \
           libmediaart                    \
           libnma                         \
           libnotify                      \
           libpeas                        \
           librsvg                        \
           libsecret                      \
           libsigc++                      \
           libsoup                        \
           libwnck                        \
           libzapojit                     \
           mm-common                      \
           mobile-broadband-provider-info \
           mousetweaks                    \
           mutter                         \
           nautilus                       \
           network-manager-applet         \
           notification-daemon            \
           pango                          \
           pangomm                        \
           pygobject                      \
           pygtk                          \
           rest                           \
           seed                           \
           sushi                          \
           totem                          \
           totem-pl-parser                \
           tracker                        \
           vala                           \
           vino                           \
           vte                            \
           yelp                           \
           yelp-tools                     \
           yelp-xsl                       \
           zenity


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