aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKyle Meyer <kyle@kyleam.com>2023-12-11 21:42:42 -0500
committerKyle Meyer <kyle@kyleam.com>2023-12-11 21:42:42 -0500
commit957d7e976c1ca133b177d21038314f44dda3cc9f (patch)
tree3e204fa4d86cedb4c16f0fb4997054b991b27b3b
parentafb7518eb34b7dd8cb92e26048d85e32960fbd7f (diff)
downloadorg-link-edit-957d7e976c1ca133b177d21038314f44dda3cc9f.tar.gz
make: Compile test-org-link-edit.el
-rw-r--r--Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index af275ed..ae5507d 100644
--- a/Makefile
+++ b/Makefile
@@ -1,17 +1,17 @@
LOAD_PATH ?=
-BATCH = emacs -Q --batch $(LOAD_PATH)
+BATCH = emacs -Q --batch $(LOAD_PATH) -L .
-all: org-link-edit-autoloads.el org-link-edit.elc
+all: org-link-edit-autoloads.el org-link-edit.elc test-org-link-edit.elc
.PHONY: test
-test: org-link-edit.elc
- @$(BATCH) -L . -l test-org-link-edit \
+test: org-link-edit.elc test-org-link-edit.elc
+ @$(BATCH) -l test-org-link-edit \
--eval "(ert-run-tests-batch-and-exit '(not (tag interactive)))"
.PHONY: clean
clean:
- $(RM) org-link-edit-autoloads.el org-link-edit.elc
+ $(RM) org-link-edit-autoloads.el org-link-edit.elc test-org-link-edit.elc
%.elc: %.el
@$(BATCH) -f batch-byte-compile $<