branch: externals/compat commit d4495ecfdba76b0bc2ad44e4f4af78d938b7b09e Author: Philip Kaludercic <phil...@posteo.net> Commit: Philip Kaludercic <phil...@posteo.net>
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. --- Makefile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 3ed7ee57d1..05fe2eb422 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 $<