branch: elpa/forth-mode
commit 4dc1ff0f3be5de950e25914bdf99153b47774492
Author: Lars Brinkhoff <[email protected]>
Commit: Lars Brinkhoff <[email protected]>
Include backend files in make dependencies.
---
Makefile | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
index 6b929f8b77..0e9188dc56 100644
--- a/Makefile
+++ b/Makefile
@@ -1,9 +1,11 @@
EMACS = emacs
EMACS_LOAD = $(EMACS) -Q --batch --load
+SRC = $(wildcard *.el) $(wildcard backend/*.el)
+
all: forth-mode.elc
-forth-mode.elc: $(wildcard *.el)
+forth-mode.elc: $(SRC)
$(EMACS_LOAD) build.el
doc: forth-mode.info