27 lines
578 B
Makefile
27 lines
578 B
Makefile
SRC = systemd.el systemd-company.el
|
|
|
|
PREFIX = /usr/local
|
|
datarootdir := $(PREFIX)/share
|
|
emacsdir := $(datarootdir)/emacs/site-lisp
|
|
|
|
EMACS = emacs
|
|
|
|
all: $(SRC:.el=.elc)
|
|
|
|
check: tests/systemd-tests.el systemd.elc
|
|
@$(EMACS) -Q --batch -L . --eval "(progn \
|
|
(load-file \"tests/systemd-tests.el\") \
|
|
(ert-run-tests-batch-and-exit))"
|
|
|
|
clean:
|
|
$(RM) $(SRC:.el=.elc)
|
|
|
|
install:
|
|
install -d $(DESTDIR)$(emacsdir)/systemd
|
|
install -m644 $(SRC) $(SRC:.el=.elc) -t $(DESTDIR)$(emacsdir)/systemd
|
|
|
|
.el.elc:
|
|
$(EMACS) -L . --batch -f batch-byte-compile $<
|
|
|
|
.PHONY: all check clean install
|