]> git.notmuchmail.org Git - notmuch/blob - emacs/Makefile.local
changelog stanza for 0.17-4
[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
22 emacs_images := \
23         $(srcdir)/$(dir)/notmuch-logo.png
24
25 emacs_bytecode = $(emacs_sources:.el=.elc)
26
27 # Because of defmacro's and defsubst's, we have to account for load
28 # dependencies between Elisp files when byte compiling.  Otherwise,
29 # the byte compiler may load an old .elc file when processing a
30 # "require" or we may fail to rebuild a .elc that depended on a macro
31 # from an updated file.
32 $(dir)/.eldeps: $(dir)/Makefile.local $(dir)/make-deps.el $(emacs_sources)
33         $(call quiet,EMACS) --directory emacs -batch -l make-deps.el \
34                 -f batch-make-deps $(emacs_sources) > $@.tmp && \
35                 (cmp -s $@.tmp $@ || mv $@.tmp $@)
36 -include $(dir)/.eldeps
37 CLEAN+=$(dir)/.eldeps $(dir)/.eldeps.tmp
38
39 %.elc: %.el $(global_deps)
40         $(call quiet,EMACS) --directory emacs -batch -f batch-byte-compile $<
41
42 ifeq ($(WITH_EMACS),1)
43 ifeq ($(HAVE_EMACS),1)
44 all: $(emacs_bytecode)
45 endif
46
47 install: install-emacs
48 endif
49
50 .PHONY: install-emacs
51 install-emacs:
52         mkdir -p "$(DESTDIR)$(emacslispdir)"
53         install -m0644 $(emacs_sources) "$(DESTDIR)$(emacslispdir)"
54 ifeq ($(HAVE_EMACS),1)
55         install -m0644 $(emacs_bytecode) "$(DESTDIR)$(emacslispdir)"
56 endif
57         mkdir -p "$(DESTDIR)$(emacsetcdir)"
58         install -m0644 $(emacs_images) "$(DESTDIR)$(emacsetcdir)"
59
60 CLEAN := $(CLEAN) $(emacs_bytecode)