aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorPhilip Kaludercic <philipk@posteo.net>2022-07-11 15:09:11 +0200
committerPhilip Kaludercic <philipk@posteo.net>2022-07-11 15:09:11 +0200
commitd4495ecfdba76b0bc2ad44e4f4af78d938b7b09e (patch)
treedbdf694fb7e83807ce1d9e4cc3bf72b50b18e259 /Makefile
parent0c4af13dde7eb9980b636eae42954a9dfea31ba9 (diff)
Rebuild all files when compat-macs.el is changed
This could have been written in a single line, but that would have resulted in a long line in the long time.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 3ed7ee5..05fe2eb 100644
--- a/Makefile
+++ b/Makefile
@@ -24,7 +24,12 @@ test: compile
clean:
$(RM) $(BYTEC) compat.info
-compat.elc: compat.el compat-macs.el compat-24.el compat-25.el compat-26.el compat-27.el compat-28.el
+compat.el: compat-macs.el
+compat-24.el: compat-macs.el
+compat-25.el: compat-macs.el
+compat-26.el: compat-macs.el
+compat-27.el: compat-macs.el
+compat-28.el: compat-macs.el
.el.elc:
$(EMACS) -Q --batch -L . -f batch-byte-compile $<