aboutsummaryrefslogtreecommitdiffhomepage
path: root/emacs/Makefile.local
blob: 52aca4efa89ac832838d6ac125f9ca0e71c22a97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# -*- makefile -*-

dir := emacs
emacs_sources := \
	$(dir)/notmuch-lib.el \
	$(dir)/notmuch.el \
	$(dir)/notmuch-query.el \
	$(dir)/notmuch-show.el

emacs_bytecode := $(subst .el,.elc,$(emacs_sources))

%.elc: %.el
	$(call quiet,EMACS) --directory emacs -batch -f batch-byte-compile $<

ifeq ($(HAVE_EMACS),1)
all: $(emacs_bytecode)
endif

install: install-emacs

.PHONY: install-emacs
install-emacs:
	mkdir -p $(DESTDIR)/$(emacs_lispdir)
	install -m0644 $(emacs_sources) $(DESTDIR)$(emacs_lispdir)
ifeq ($(HAVE_EMACS),1)
	install -m0644 $(emacs_bytecode) $(DESTDIR)$(emacs_lispdir)
endif

CLEAN := $(CLEAN) $(emacs_bytecode)