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