firefox/stylus.slack.com.css: Kick Slack styling some more.
[profile] / Makefile
CommitLineData
67b1a15a
MW
1## -*-makefile-*-
2
3all::
5e776d3c
MW
4.PHONY: all
5
6clean::
7.PHONY: clean
8
67b1a15a
MW
9.SECONDEXPANSION: #sorry
10
11###--------------------------------------------------------------------------
12### Utilities.
13
14##
15quote = '$(subst ','\'',$1)'#'
16
17## Suss out how to print stuff.
18print = printf "%s" $(call quote,$1)
19
20## Looking configuration things up.
21mdw-conf = $(shell bin/mdw-conf "$1" "$2")
22
23## Checking symlink targets.
24symlink-ok-p = $(shell \
25 case $$(readlink 2>/dev/null $1) in ($2) echo t ;; esac)
26
27## Silent rules machinery.
28V = 0
67b1a15a
MW
29V_AT = $(V_AT_$V)
30V_AT_0 = @
2e0a8012 31v_print = $(call v_print_$V,$1,$2)
a811ce27
MW
32v_print_0 = \
33 printf " %-8s %s\n" "$1" $(call quote,$(patsubst $(HOME)/%,~/%,$2));
2e0a8012 34v_tag = $(V_AT)$(call v_print_$V,$1,$@)
67b1a15a
MW
35
36## Hack.
37relax =
38
39###--------------------------------------------------------------------------
40### Configuration.
41
42## Figure out where I am.
3337f511 43HERE := $(shell pwd)
67b1a15a
MW
44
45## Decide on how to fetch things from URLs.
46ifeq ($(shell (curl >/dev/null 2>&1 --version || [ $$? -eq 2 ]) && echo t),t)
47 get-url = curl -fs -o $1 $2
48else
49 get-url = wget -q -O $1 $2
50endif
51
52## Which Emacs should I use?
53EMACS := $(shell \
54 emacs=nil; \
55 for i in emacs24 emacs23 emacs22 emacs21 emacs; do \
3337f511
MW
56 if type >/dev/null 2>&1 $$i; then emacs=$$i; break; fi; \
57 done; \
58 echo $$emacs)
67b1a15a
MW
59
60## Whence to obtain externally hosted stuff.
61REPO = https://ftp.distorted.org.uk/u/mdw/profile
62
63## Additional local configuration.
64-include local.mk
65
66###--------------------------------------------------------------------------
67### Some utility rules.
68
69_force:
70.PHONY: _force
71
72###--------------------------------------------------------------------------
73### Emacs.
74
967148ff
MW
75ifneq ($(EMACS),nil)
76
67b1a15a
MW
77EMACSLIB = $(HOME)/lib/emacs
78
486623cb 79EMACS_VERSION := $(shell $(EMACS) 2>&1 -Q --batch --eval \
b2f6f110
MW
80 '(message "%s %s" emacs-major-version emacs-minor-version)' | \
81 tail -n1)
486623cb
MW
82emacs-version-p = $(shell set -- $(EMACS_VERSION); \
83 if [ $$1 -gt $1 ] || ([ $$1 -eq $1 ] && [ $$2 -ge $2 ]); then \
84 echo t; \
85 fi)
86
6369ae29
MW
87ELISP += make-regexp ew-hols
88ELISP += mdw-gnus-patch
89ELISP += mdw-multiple-cursors
90ELISP += git git-blame vc-git stgit quilt
486623cb
MW
91
92ifeq ($(call emacs-version-p,24,3),t)
6369ae29 93ELISP += bracketed-paste
486623cb 94endif
67b1a15a 95
3e441da6
MW
96ELISP += dot-emacs
97dot-emacs_DEPS = make-regexp
98
67b1a15a 99SCRIPTLINKS += emacsclient-hack movemail-hack sendmail-hack
cef9886f 100SCRIPTLINKS += aspell-hack emerge-hack wakey.sh
67b1a15a 101
3e441da6 102%.elc: %.el $$(foreach e, $$($$*_DEPS), $$(DEP_$$e))
83198952
MW
103 $(call v_tag,EMACS)if ! $(EMACS) >$*.build-log 2>&1 \
104 -L el/ -L $(EMACSLIB) \
67b1a15a 105 --batch --no-site-file \
83198952
MW
106 --eval '(byte-compile-file "$<")'; then \
107 cat $*.build-log; exit 2; \
108 fi
67b1a15a 109
6369ae29
MW
110LOCAL_ELISP = $(filter $(notdir $(wildcard el/*.el)), \
111 $(addsuffix .el, $(ELISP)))
112$(foreach e, $(LOCAL_ELISP), \
113 $(eval DEP_$(basename $e) = $(EMACSLIB)/$(e:.el=.elc)))
67b1a15a
MW
114$(addprefix $(EMACSLIB)/, $(LOCAL_ELISP)): $(EMACSLIB)/%: el/%
115 $(call v_tag,SYMINK)mkdir -p $(EMACSLIB) && \
116 rm -f $@.new && \
117 ln -s $(HERE)/$< $@.new && \
118 mv $@.new $@
119
120REMOTE_ELISP = $(filter-out $(notdir $(wildcard el/*.el)), \
6369ae29 121 $(addsuffix .el, $(ELISP)))
67b1a15a 122$(foreach e, $(REMOTE_ELISP), \
6369ae29 123 $(eval DEP_$(basename $e) = $(if $(shell \
67b1a15a
MW
124 if $(EMACS) >/dev/null 2>&1 --no-site-file -q --batch \
125 --eval ' \
126 (progn \
127 (kill-emacs (condition-case nil \
128 (progn (load-library "$e") 0) \
129 (error 1))))'; then \
130 echo t; \
131 fi),, $(EMACSLIB)/$(e:.el=.elc))))
132$(addprefix $(EMACSLIB)/, $(REMOTE_ELISP)): $(EMACSLIB)/%:
133 $(call v_tag,FETCH)mkdir -p $(EMACSLIB) && \
134 $(call get-url,$@.new,$(REPO)/$*) && \
135 mv $@.new $@
136
137DOTLINKS += .emacs .emacs-calc .vm .gnus.el .ercrc.el
138
139all:: $(foreach e, $(ELISP), $(DEP_$e))
6369ae29 140$(foreach e, $(ELISP), $(eval _emacs.$e: $(EMACSLIB)/$e.elc))
67b1a15a 141
967148ff
MW
142endif
143
67b1a15a
MW
144###--------------------------------------------------------------------------
145### Other simpler things.
146
147$(HOME)/.mdw.conf:
148 $(call v_tag,COPY)cp mdw.conf $@.new && mv $@.new $@
149
150## Utility packages.
151PACKAGES += mlib checkpath
152mlib_CHECK = crc-mktab
153checkpath_CHECK = tmpdir
154checkpath_DEPS = mlib
155
156## Packaging machinery.
157SCRIPTLINKS += mdw-build mdw-sbuild mdw-sbuild-server
158SCRIPTLINKS += update-buildable-branch
f0637893
MW
159DOTLINKS += .config/mdw-build.conf
160.config/mdw-build.conf_SRC = mdw-build.conf
67b1a15a
MW
161
162## Shells.
163DOTLINKS += .profile .shell-rc .shell-logout
a3857ab2 164DOTLINKS += .shrc
9ba9bb2f
MW
165DOTLINKS += .zprofile .zshrc .zlogout .zshenv
166DOTLINKS += .bash_profile .bash_completion .bash_logout
167DOTLINKS += .bashrc .inputrc
67b1a15a
MW
168.bash_profile_SRC = bash-profile
169.bash_completion_SRC = bash-completion
9ba9bb2f
MW
170.bash_logout_SRC = shell-logout
171.zlogout_SRC = shell-logout
67b1a15a 172
72123a3a
MW
173all::
174 $(V_AT)if [ $(HOME)/.zcompdump -ot dot/zshrc ]; then \
175 $(call v_print,ZAP,$(HOME)/.zcompdump)rm -f $(HOME)/.zcompdump; \
176 fi
177
a3857ab2
MW
178## The Plan 9 `rc' shell. This needs special hacking, because the Linux port
179## and Plan 9 From User Space have incompatible syntax.
180DOTLINKS += lib/profile
181lib/profile_SRC = rcrc
182all:: $(HOME)/.rcrc
183$(HOME)/.rcrc: dot/rcrc
184 $(call v_tag,SED)sed 's/; if not/else/' $< >$@.new && mv $@.new $@
185
67b1a15a
MW
186## Git.
187DOTSUBST += .gitconfig
2e15741e 188SCRIPTLINKS += git-copyright-dates
67b1a15a
MW
189DOTLINKS += .cgrc .tigrc
190.gitconfig_SUBSTS = \
9ca6d190
MW
191 $(call substvar,releasekey,$(call mdw-conf,releasekey,481334C2)) \
192 $(call substvar,email,$(call mdw-conf,email,mdw@distorted.org.uk))
67b1a15a
MW
193$(HOME)/.gitconfig: $(HOME)/.mdw.conf
194
195## PulseAudio.
196DOTLINKS += .pulse/daemon.conf
197DOTSUBST += .pulse/default.pa
198.pulse/daemon.conf_SRC = pulse-daemon.conf
199.pulse/default.pa_SRC = pulse-default.pa.in
200
201## Other editors.
202DOTLINKS += .vimrc .mg .zile
203
204## Mail.
205DOTLINKS += .mailrc .signature .muttrc
206
207## Lisp.
6a8c8070
MW
208DOTLINKS += .cmucl-init.lisp .sbclrc .clisprc.lisp
209DOTLINKS += .eclrc .ccl-init.lisp .abclrc
67b1a15a
MW
210.cmucl-init.lisp_SRC = lisp-init.lisp
211.sbclrc_SRC = lisp-init.lisp
212.clisprc.lisp_SRC = lisp-init.lisp
213.eclrc_SRC = lisp-init.lisp
6a8c8070
MW
214.ccl-init.lisp_SRC = lisp-init.lisp
215.abclrc_SRC = lisp-init.lisp
67b1a15a
MW
216DOTLINKS += .swank.lisp
217
218## IPython.
219DOTLINKS += .ipython/profile_default/ipython_config.py
220DOTLINKS += .ipython/profile_default/startup/50-key-bindings.py
221.ipython/profile_default/ipython_config.py_SRC = ipython-config.py
222.ipython/profile_default/startup/50-key-bindings.py_SRC = ipython-key-bindings.py
223
224## Other languages.
225DOTLINKS += .guile
226DOTLINKS += .tclshrc .wishrc
227.tclshrc_SRC = tclshrc
228.wishrc_SRC = tclshrc
229
8f3f3f67 230## Jukebox things.
94275284
MW
231MISCLINKS += lib/perl/DisOrder.pm
232lib/perl/DisOrder.pm_SRC = pl/DisOrder.pm
8f3f3f67 233SCRIPTLINKS += disorder-switch-config
d22be3ab 234SCRIPTLINKS += disorder-autoplay
a1b30762 235SCRIPTLINKS += disorder-notify
8f3f3f67 236
67b1a15a
MW
237## Random scripts.
238SCRIPTLINKS += mdw-editor mdw-pager
239SCRIPTLINKS += mdw-conf
240SCRIPTLINKS += svnwrap
241SCRIPTLINKS += guest-console
242SCRIPTLINKS += hyperspec
310d0527 243SCRIPTLINKS += bdl
878a38bd 244SCRIPTLINKS += datasyms
8945a62f 245SCRIPTLINKS += fixsub
01a5d0a6 246SCRIPTLINKS += check-debsyms
a98bca79 247SCRIPTLINKS += check-blkdev-size
67b1a15a
MW
248
249## Random odds and ends.
3f7369a9 250DOTLINKS += .infokey .sqliterc
67b1a15a
MW
251DOTLINKS += .gdbinit .toprc .aspell.conf
252DOTLINKS += .dircolors .colordiffrc .screenrc .tmux.conf
253DOTLINKS += .cvsrc .indent.pro .ditz-config
da526ba7
MW
254DOTLINKS += .lftp/rc
255.lftp/rc_SRC = lftp-rc
dd794b20
MW
256DOTLINKS += .a2ps/a2psrc
257.a2ps/a2psrc_SRC = a2psrc
67b1a15a
MW
258DOTSUBST += .mykermrc
259SCRIPTLINKS += lesspipe.sh
260
261SCRIPTLINKS += run-with-shell-env
262SCRIPTLINKS += start-ssh-agent start-ssh-pageant
263SCRIPTLINKS += add-ssh-keys
264SCRIPTLINKS += hacks/ssh/ssh
265hacks/ssh/ssh_SRC = hacks/ssh
266
267DOTLINKS += .w3m/config .elinks/elinks.conf
268.w3m/config_SRC = w3m-config
269.elinks/elinks.conf_SRC = elinks.conf
270
271DOTLINKS += .mc/ini .mc/panels.ini
272.mc/ini_SRC = mc-ini
273.mc/panels.ini_SRC = mc-panels.ini
274
e8f132bd 275DOTLINKS += .parallel/config .parallel/sshloginfile
67b1a15a 276.parallel/config_SRC = parallel-config
e8f132bd 277.parallel/sshloginfile_SRC = parallel-hosts
67b1a15a 278
3f7369a9
MW
279all:: $(HOME)/.less
280$(HOME)/.less: dot/lesskey
281 $(V_AT)rm -f $(HOME)/.lesskey
282 $(call v_tag,LESSKEY)lesskey -o$@ $<
283
67b1a15a
MW
284###--------------------------------------------------------------------------
285### X11 configuration.
286
287ifeq ($X,t)
288
289PACKAGES += xtoys
290xtoys_CHECK = xatom
291xtoys_DEPS = mlib
292
293DOTLINKS += .xinitrc .xsession .xmodmap .vncrc .vncsession
df4bcc77
MW
294DOTLINKS += .config/fontconfig/fonts.conf
295.config/fontconfig/fonts.conf_SRC = fonts.conf
67b1a15a
MW
296DOTLINKS += .stalonetrayrc
297
67b1a15a
MW
298DOTLINKS += .config/gnome-session/sessions/mdw.session
299.config/gnome-session/sessions/mdw.session_SRC = mdw.session
300
301DOTLINKS += .Eterm/themes/Eterm/theme.cfg
302DOTLINKS += .enlightenment/keybindings.cfg
303DOTLINKS += .enlightenment-vnc/keybindings.cfg
304DOTLINKS += .e16/bindings.cfg
305.Eterm/themes/Eterm/theme.cfg_SRC = eterm-theme.cfg
306.enlightenment/keybindings.cfg_SRC = e-keybindings.cfg
307.enlightenment-vnc/keybindings.cfg_SRC = evnc-keybindings.cfg
308.e16/bindings.cfg_SRC = e16-bindings
309
310DOTLINKS += .gtkrc-2.0
311DOTLINKS += .config/gtk-3.0/gtk.css
312DOTLINKS += .config/gtk-3.0/settings.ini
313.config/gtk-3.0/gtk.css_SRC = gtk3.css
314.config/gtk-3.0/settings.ini_SRC = gtk3-settings.ini
315
a9d5edbf
MW
316DOTLINKS += .config/user-dirs.dirs .config/user-dirs.locale
317.config/user-dirs.dirs_SRC = user-dirs.dirs
318.config/user-dirs.locale_SRC = user-dirs.locale
319
67b1a15a
MW
320SCRIPTLINKS += xinitcmd lock-screen xshutdown
321SCRIPTLINKS += un-backslashify-selection
322SCRIPTLINKS += xpra-start-xdummy
5f9b345a 323SCRIPTLINKS += play-rawk
b3ee0533 324SCRIPTLINKS += xduplic-terminal
67b1a15a
MW
325
326DOTCPP += .Xdefaults
327Xdefaults_DEFS = -DEMACSWD=$(call mdw-conf,emacs-width,77)
57a9b0cd 328$(HOME)/.Xdefaults: $(HOME)/.mdw.conf dot/Xdefaults.pterm
67b1a15a 329
ddc97f65
MW
330ifeq ($(shell case $${DISPLAY-nil} in (:[0-9]*) echo t ;; (*) echo nil ;; esac),t)
331dotfile-hook/.Xdefaults = \
8baf0354 332 $(call v_tag,XRDB)xrdb -load $<
ddc97f65
MW
333endif
334
67b1a15a
MW
335endif
336
337###--------------------------------------------------------------------------
53ad55a5
MW
338### Firefox things.
339
340ifeq ($(FIREFOX),t)
341
342out/:
343 $(call v_tag,MKDIR)mkdir $@
344
345out/firefox/: | out/
346 $(call v_tag,MKDIR)mkdir $@
347
348clean::; rm -rf out/
349
350all:: out/firefox/smartup-gestures.config
351out/firefox/smartup-gestures.config: firefox/smartup-gestures.json | out/firefox/
352 $(call v_tag,BLOB)\
353 jq -c . $< | bincode base64 >$@.new && mv $@.new $@
354
355all:: out/firefox/stylus.json
356out/firefox/stylus.json: firefox/stylus/ firefox/stylus/*.css | out/firefox/
357 $(call v_tag,IMPLODE)\
358 firefox/implode-stylus firefox/stylus/ >$@.new && \
359 mv $@.new $@
360endif
361
362###--------------------------------------------------------------------------
9c72b1b3
MW
363### General symlinking.
364
365misclink-source = $(HERE)/$(or $($1_SRC), $1)
366
367all:: $(addprefix $(HOME)/, $(MISCLINKS))
368misclink-ok-p = \
369 $(call symlink-ok-p,$(HOME)/$1,$(call misclink-source,$1))
370$(addprefix $(HOME)/, $(subst %,\%,$(MISCLINKS))): $(HOME)/%: \
371 $$(if $$(call misclink-ok-p,$$*),,_force)
372 $(call v_tag,SYMLINK)mkdir -p $(dir $@) && \
373 rm -f $@.new && \
374 ln -s $(call misclink-source,$*) $@.new && \
375 mv $@.new $@
376 $(symlink-hook/$*)
377
378###--------------------------------------------------------------------------
67b1a15a
MW
379### Processing dotfiles.
380
381dotfile-source = $(HERE)/dot/$(or $($1_SRC), $(1:.%=%)$2)
382
4937ba2d 383## Easiest: just make symlinks.
67b1a15a
MW
384dotlink-ok-p = \
385 $(call symlink-ok-p,$(HOME)/$1,$(call dotfile-source,$1))
386all:: $(addprefix $(HOME)/, $(DOTLINKS))
387$(addprefix $(HOME)/, $(subst %,\%,$(DOTLINKS))): $(HOME)/%: \
388 $$(if $$(call dotlink-ok-p,$$*),,_force)
389 $(call v_tag,SYMLINK)mkdir -p $(dir $@) && \
390 rm -f $@.new && \
391 ln -s $(call dotfile-source,$*) $@.new && \
392 mv $@.new $@
f6c3a80b 393 $(dotfile-hook/$*)
67b1a15a
MW
394
395## Hack with the C preprocessor.
396all:: $(addprefix $(HOME)/, $(DOTCPP))
397$(addprefix $(HOME)/, $(subst %,\%,$(DOTCPP))): $(HOME)/%: \
398 $$(call dotfile-source,$$*) Makefile
399 $(call v_tag,CPP)mkdir -p $(dir $@) && \
400 rm -f $@.new && \
401 cpp -P -o$@.new $($*_DEFS) $< && \
402 mv $@.new $@
f6c3a80b 403 $(dotfile-hook/$*)
67b1a15a
MW
404
405## Hack by making simple substitutions.
406substvar = -e $(call quote,s\a@$1@\a$2\ag)
407SUBSTS += $(call substvar,home,$(HOME))
408SUBSTS += $(call substvar,profile,$(HERE))
409all:: $(addprefix $(HOME)/, $(DOTSUBST))
410$(addprefix $(HOME)/, $(subst %,\%,$(DOTSUBST))): $(HOME)/%: \
33271a96 411 $$(call dotfile-source,$$*,.in) Makefile
67b1a15a
MW
412 $(call v_tag,SUBST)mkdir -p $(dir $@) && \
413 rm -f $@.new && \
414 sed -e "1i\
415$(relax)### generated by $(HERE)/Makefile; do not edit!" \
416 $(SUBSTS) $($*_SUBSTS) \
417 $(call dotfile-source,$*,.in) >$@.new && \
418 mv $@.new $@
f6c3a80b 419 $(dotfile-hook/$*)
67b1a15a
MW
420
421###--------------------------------------------------------------------------
422### Processing script links.
423
424script-source = $(HERE)/bin/$(or $($1_SRC), $1)
0cd3b798
MW
425
426ifeq ($(prefix-shebang-p),t)
427all:: $(addprefix $(HOME)/bin/, $(SCRIPTLINKS))
428$(addprefix $(HOME)/bin/, $(SCRIPTLINKS)): $(HOME)/bin/%: \
429 $$(call script-source,$$*) Makefile
430 $(call v_tag,SHEBANG)mkdir -p $(dir $@) && \
431 rm -f $@.new && \
432 sed "1s\a\(#! *\)/\a\1$(SHEBANG_PREFIX)/\a" \
433 $(call script-source,$*) >$@.new && \
434 chmod --reference=$(call script-source,$*) $@.new && \
435 mv $@.new $@
436 $(script-hook/$*)
437else
67b1a15a
MW
438scriptlink-ok-p = \
439 $(call symlink-ok-p,$(HOME)/bin/$1,$(call script-source,$1))
440all:: $(addprefix $(HOME)/bin/, $(SCRIPTLINKS))
441$(addprefix $(HOME)/bin/, $(SCRIPTLINKS)): $(HOME)/bin/%: \
442 $$(if $$(call scriptlink-ok-p,$$*),,_force)
443 $(call v_tag,SYMLINK)mkdir -p $(dir $@) && \
444 rm -f $@.new && \
445 ln -s $(call script-source,$*) $@.new && \
446 mv $@.new $@
f6c3a80b 447 $(script-hook/$*)
0cd3b798 448endif
67b1a15a
MW
449
450all:: $(addprefix $(HOME)/bin/, $(SCRIPTLINKS))
451
452###--------------------------------------------------------------------------
453### Building packages from source tarballs.
454
455SRCDIR = $(HOME)/src/profile
456
457pkg-builddir = $(SRCDIR)/$1/build
458pkg-stamp = $(call pkg-builddir,$1)/$2-stamp
459
460$(foreach p, $(PACKAGES), $(eval DEP_$p = $(if $(shell \
461 if $($p_CHECK) >/dev/null 2>&1 --version; then echo t; fi),, \
462 $(call pkg-stamp,$p,install))))
463
464$(PACKAGES:%=$(SRCDIR)/%.tar.gz): $(SRCDIR)/%.tar.gz:
465 $(call v_tag,FETCH)mkdir -p $(SRCDIR) && \
466 rm -f $@.new && \
467 $(call get-url,$@.new,$(REPO)/$*.tar.gz) && \
468 mv $@.new $@
469
470$(foreach p, $(PACKAGES), $(call pkg-stamp,$p,unpack)): \
471 $(call pkg-stamp,%,unpack): $(SRCDIR)/%.tar.gz
472 $(call v_tag,EXTRACT)rm -rf $(SRCDIR)/$* && \
473 mkdir $(SRCDIR)/$*.tmp-unpack && \
474 cd $(SRCDIR)/$*.tmp-unpack && \
475 gzip -cd ../$*.tar.gz | tar xf - && \
476 mv * ../$* && \
477 cd .. && \
478 rmdir $*.tmp-unpack && \
479 mkdir $*/build && \
480 touch $*/build/unpack-stamp
481
482$(foreach p, $(PACKAGES), $(call pkg-stamp,$p,configure)): \
483 $(call pkg-stamp,%,configure): \
484 $(call pkg-stamp,%,unpack) \
485 $$(foreach p, $$($$*_DEPS), $$(DEP_$$p))
486 $(call v_tag,CONFIG)cd $(dir $@) && \
487 ../configure --prefix=$(HOME) \
488 PKG_CONFIG_PATH=$(HOME)/lib/pkgconfig \
489 $($*_CONFIG) >>buildlog 2>&1 && \
490 touch configure-stamp
491
492$(foreach p, $(PACKAGES), $(call pkg-stamp,$p,build)): \
493 $(call pkg-stamp,%,build): \
494 $(call pkg-stamp,%,configure)
495 $(call v_tag,BUILD)cd $(dir $@) && \
496 $(MAKE) $($*_MAKEFLAGS) >>buildlog 2>&1 && \
497 touch build-stamp
498
499$(foreach p, $(PACKAGES), $(call pkg-stamp,$p,install)): \
500 $(call pkg-stamp,%,install): \
501 $(call pkg-stamp,%,build)
502 $(call v_tag,INSTALL)cd $(dir $@) && \
503 $(MAKE) $($*_MAKEFLAGS) install >>buildlog 2>&1 && \
504 touch install-stamp
f6c3a80b 505 $(package-hook/$*)
67b1a15a
MW
506
507all:: $(foreach p, $(PACKAGES), $(DEP_$p))
508$(foreach p, $(PACKAGES), $(eval _pkg.$p: $(call pkg-stamp,$p,install)))
509
510###----- That's all, folks --------------------------------------------------