From b69e7418fdd12c6228079886d42c12fe1342727c Mon Sep 17 00:00:00 2001 From: Omar Polo Date: Tue, 17 Aug 2021 09:40:59 +0000 Subject: [PATCH] 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 --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index e9cf197..febfa1b 100644 --- a/Makefile +++ b/Makefile @@ -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