]> git.notmuchmail.org Git - notmuch/blob - emacs/Makefile.local
Merge tag 'debian/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 ifeq ($(HAVE_EMACS),1)
33 $(dir)/.eldeps: $(dir)/Makefile.local $(dir)/make-deps.el $(emacs_sources)
34         $(call quiet,EMACS) --directory emacs -batch -l make-deps.el \
35                 -f batch-make-deps $(emacs_sources) > $@.tmp && \
36                 (cmp -s $@.tmp $@ || mv $@.tmp $@)
37 -include $(dir)/.eldeps
38 endif
39 CLEAN+=$(dir)/.eldeps $(dir)/.eldeps.tmp
40
41 ifeq ($(HAVE_EMACS),1)
42 %.elc: %.el $(global_deps)
43         $(call quiet,EMACS) --directory emacs -batch -f batch-byte-compile $<
44 endif
45
46 ifeq ($(WITH_EMACS),1)
47 ifeq ($(HAVE_EMACS),1)
48 all: $(emacs_bytecode)
49 install-emacs: $(emacs_bytecode)
50 endif
51
52 install: install-emacs
53 endif
54
55 .PHONY: install-emacs
56 install-emacs:
57         mkdir -p "$(DESTDIR)$(emacslispdir)"
58         install -m0644 $(emacs_sources) "$(DESTDIR)$(emacslispdir)"
59 ifeq ($(HAVE_EMACS),1)
60         install -m0644 $(emacs_bytecode) "$(DESTDIR)$(emacslispdir)"
61 endif
62         mkdir -p "$(DESTDIR)$(emacsetcdir)"
63         install -m0644 $(emacs_images) "$(DESTDIR)$(emacsetcdir)"
64
65 CLEAN := $(CLEAN) $(emacs_bytecode)