summaryrefslogtreecommitdiff
path: root/packages/x/Makefile
blob: 07b9901e6860017fa9ee077f2e0f07797bdb50ea (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
#
# Following command helps to cheate SUBDIRS list:
# $ tree -fid .
#

SUBDIRS := Vulkan               \
           WindowMaker          \
           WindowMaker-extra    \
           ayatana              \
           babl                 \
           blueman              \
           conky                \
           dejavu-fonts         \
           dejavu-fonts-ttf     \
           desktop-file-utils   \
           desktop-folder       \
           dino                 \
           feh                  \
           fontconfig           \
           fonts-tlwg           \
           freeglut             \
           freerdp              \
           gegl                 \
           geoclue              \
           gimp                 \
           gimp3                \
           glew                 \
           glu                  \
           gst-plugins-bad      \
           gst-plugins-base     \
           gst-plugins-good     \
           gst-plugins-ugly     \
           gstreamer            \
           gtk-layer-shell      \
           gtk4-layer-shell     \
           hicolor-icon-theme   \
           idesk                \
           imagemagick          \
           jasper               \
           lensfun              \
           libcanberra          \
           libdrm               \
           libepoxy             \
           liberation-fonts     \
           liberation-fonts-ttf \
           libevdev             \
           libfakekey           \
           libglvnd             \
           libinput             \
           libportal            \
           libraw               \
           libreoffice          \
           libspiro             \
           libtxc_dxtn          \
           libvdpau             \
           libwacom             \
           libwmf               \
           libwpe               \
           libxkbcommon         \
           libxklavier          \
           lightdm              \
           lxappearance         \
           lxappearance-obconf  \
           lxinput              \
           lxmenu-data          \
           menu-cache           \
           mesa                 \
           mesa-demos           \
           mozilla-firefox      \
           mozilla-thunderbird  \
           mozjs                \
           mtdev                \
           nitrogen             \
           obconf               \
           openbox              \
           openjdk              \
           pcmanfm              \
           php-imagick          \
           pidgin               \
           pycairo              \
           pyqt5                \
           pyxdg                \
           qt5                  \
           rdesktop             \
           startup-notification \
           tdesktop             \
           terminus-font        \
           thaixfonts           \
           themes               \
           timezonemap          \
           tint2                \
           transmission         \
           vaapi                \
           webkitgtk            \
           wpebackend-fdo       \
           xdg-dbus-proxy       \
           xdg-desktop-portal   \
           xdg-user-dirs        \
           xdg-utils            \
           xdo                  \
           xdotool              \
           xfce                 \
           xterm


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