Files
ox-gemini/Makefile
T

17 lines
254 B
Makefile
Raw Normal View History

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