ox-gemini/Makefile

17 lines
254 B
Makefile
Raw Normal View History

EMACS = emacs
2020-11-25 17:16:45 +00:00
update:
${EMACS} -batch -l test/make-update.el
2020-11-25 17:16:45 +00:00
compile: clean lint
${EMACS} --version
${EMACS} -batch -l test/elpa.el -l test/compile.el
2020-11-25 17:16:45 +00:00
clean:
rm -f *.elc
lint:
${EMACS} --batch -l test/lint.el
2020-11-25 17:16:45 +00:00
.PHONY: update compile test clean