aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Mendler <mail@daniel-mendler.de>2023-09-27 20:21:27 +0200
committerDaniel Mendler <mail@daniel-mendler.de>2023-09-27 20:21:27 +0200
commitbb0b922bb795b0ecf6d86bcfe35549943af9d159 (patch)
tree336ca61604ef2b0201500d61de7a64d1ebcd1cc0
parent2a140e3563d3039ece2ce90d7450094a9a1775ad (diff)
parentd8f64274fad51666088621d3abb3f23941cb147a (diff)
Merge branch 'main' into emacs-30
-rw-r--r--Makefile12
1 files changed, 6 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index 54d3434..b4044da 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
@@ -49,9 +49,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