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>
This commit is contained in:
Omar Polo 2021-08-17 09:40:59 +00:00 committed by Justin Abrahms
parent c4299fb931
commit b69e7418fd
1 changed files with 3 additions and 3 deletions

View File

@ -1,8 +1,5 @@
EMACS = emacs
update:
${EMACS} -batch -l test/make-update.el
compile: clean lint
${EMACS} --version
${EMACS} -batch -l test/elpa.el -l test/compile.el
@ -13,4 +10,7 @@ clean:
lint:
${EMACS} --batch -l test/lint.el
update:
${EMACS} -batch -l test/make-update.el
.PHONY: update compile test clean