]> git.notmuchmail.org Git - notmuch/blob - emacs/Makefile.local
debian: update notmuch-emacs for emacsen-common 2.0.8
[notmuch] / emacs / Makefile.local
1 # -*- makefile -*-
2
3 dir := emacs
4 emacs_sources := \
5         $(dir)/notmuch-lib.el \
6         $(dir)/notmuch-parser.el \
7         $(dir)/notmuch.el \
8         $(dir)/notmuch-query.el \
9         $(dir)/notmuch-show.el \
10         $(dir)/notmuch-tree.el \
11         $(dir)/notmuch-wash.el \
12         $(dir)/notmuch-hello.el \
13         $(dir)/notmuch-mua.el \
14         $(dir)/notmuch-address.el \
15         $(dir)/notmuch-maildir-fcc.el \
16         $(dir)/notmuch-message.el \
17         $(dir)/notmuch-crypto.el \
18         $(dir)/notmuch-tag.el \
19         $(dir)/coolj.el \
20         $(dir)/notmuch-print.el \
21         $(dir)/notmuch-version.el
22
23 $(dir)/notmuch-version.el: $(dir)/Makefile.local version.stamp
24 $(dir)/notmuch-version.el: $(srcdir)/$(dir)/notmuch-version.el.tmpl
25         @sed -e 's/%AG%/Generated file (from $(<F)) -- do not edit!/' \
26              -e 's/%VERSION%/"$(VERSION)"/' $< > $@
27
28
29 emacs_images := \
30         $(srcdir)/$(dir)/notmuch-logo.png
31
32 emacs_bytecode = $(emacs_sources:.el=.elc)
33
34 # Because of defmacro's and defsubst's, we have to account for load
35 # dependencies between Elisp files when byte compiling.  Otherwise,
36 # the byte compiler may load an old .elc file when processing a
37 # "require" or we may fail to rebuild a .elc that depended on a macro
38 # from an updated file.
39 ifeq ($(HAVE_EMACS),1)
40 $(dir)/.eldeps: $(dir)/Makefile.local $(dir)/make-deps.el $(emacs_sources)
41         $(call quiet,EMACS) --directory emacs -batch -l make-deps.el \
42                 -f batch-make-deps $(emacs_sources) > $@.tmp && \
43                 mv $@.tmp $@
44 # We could include .eldeps directly, but that would cause a make
45 # restart whenever any .el file was modified, even if dependencies
46 # didn't change, because the mtime of .eldeps will change.  Instead,
47 # we include a second file, .eldeps.x, which we ensure always has the
48 # same content as .eldeps, but its mtime only changes when dependency
49 # information changes, in which case a make restart is necessary
50 # anyway.
51 $(dir)/.eldeps.x: $(dir)/.eldeps
52         @cmp -s $^ $@ || cp $^ $@
53 -include $(dir)/.eldeps.x
54 endif
55 CLEAN+=$(dir)/.eldeps $(dir)/.eldeps.tmp $(dir)/.eldeps.x
56
57 ifeq ($(HAVE_EMACS),1)
58 %.elc: %.el $(global_deps)
59         $(call quiet,EMACS) --directory emacs -batch -f batch-byte-compile $<
60 endif
61
62 ifeq ($(WITH_EMACS),1)
63 ifeq ($(HAVE_EMACS),1)
64 all: $(emacs_bytecode)
65 install-emacs: $(emacs_bytecode)
66 endif
67
68 install: install-emacs
69 endif
70
71 .PHONY: install-emacs
72 install-emacs:
73         mkdir -p "$(DESTDIR)$(emacslispdir)"
74         install -m0644 $(emacs_sources) "$(DESTDIR)$(emacslispdir)"
75 ifeq ($(HAVE_EMACS),1)
76         install -m0644 $(emacs_bytecode) "$(DESTDIR)$(emacslispdir)"
77 endif
78         mkdir -p "$(DESTDIR)$(emacsetcdir)"
79         install -m0644 $(emacs_images) "$(DESTDIR)$(emacsetcdir)"
80
81 CLEAN := $(CLEAN) $(emacs_bytecode) $(dir)/notmuch-version.el