ox-gemini/Makefile
Omar Polo b69e7418fd make compile the default target
Make uses the first target defined if one is not specified on the
command line.  This makes the `compile' target the default one, which
seems more sensible than the `update'.

Signed-off-by: Justin Abrahms <justin@abrah.ms>
2021-08-18 21:37:39 -07:00

17 lines
254 B
Makefile

EMACS = emacs
compile: clean lint
${EMACS} --version
${EMACS} -batch -l test/elpa.el -l test/compile.el
clean:
rm -f *.elc
lint:
${EMACS} --batch -l test/lint.el
update:
${EMACS} -batch -l test/make-update.el
.PHONY: update compile test clean