From d8f64274fad51666088621d3abb3f23941cb147a Mon Sep 17 00:00:00 2001 From: Daniel Mendler Date: Wed, 27 Sep 2023 20:21:12 +0200 Subject: Makefile: Minor cleanup --- Makefile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Makefile b/Makefile index da25888..884ca54 100644 --- a/Makefile +++ b/Makefile @@ -17,11 +17,11 @@ ### Commentary: -# The Makefile is an internal tool used for Compat development and checking on -# the continuous integration system. +# The Makefile is an internal tool used for Compat development and +# checking on the continuous integration system. # make all/compile Compile Elisp files without no-byte-compile marking -# make force-compile Compile *all* Elisp files to check for compilation warnings +# make force-compile Compile *all* Elisp files to check for warnings # make clean Delete compiled *.elc and *.info files # make test Run the test suite # make check Sanity checking of the test suite @@ -48,9 +48,9 @@ all: compile compile: $(BYTEC) force-compile: - sed -i "s/ no-byte-compile: t;/ no-byte-compile: nil;/" $(BYTEC:.elc=.el) - make compile - sed -i "s/ no-byte-compile: nil;/ no-byte-compile: t;/" $(BYTEC:.elc=.el) + @sed -i "s/ no-byte-compile: t;/ no-byte-compile: nil;/" $(BYTEC:.elc=.el) + @$(MAKE) compile + @sed -i "s/ no-byte-compile: nil;/ no-byte-compile: t;/" $(BYTEC:.elc=.el) test: $(EMACS) --version -- cgit v1.0