aboutsummaryrefslogtreecommitdiffhomepage
path: root/emacs/Makefile.local
blob: e34da0be13e828e8a7f3a5033c1ec23941f6ce06 (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)$(emacslispdir)
	install -m0644 $(emacs_sources) $(DESTDIR)$(emacslispdir)
ifeq ($(HAVE_EMACS),1)
	install -m0644 $(emacs_bytecode) $(DESTDIR)$(emacslispdir)
endif

CLEAN := $(CLEAN) $(emacs_bytecode)