We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a74af09 commit c1e6c23Copy full SHA for c1e6c23
Makefile
@@ -10,11 +10,14 @@ LOAD = -l gnuplot \
10
11
default: compile
12
13
-test:
14
- $(EMACS) -batch -L . $(LOAD) -f ert-run-tests-batch-and-exit
+prepare:
+ $(EMACS) --eval "(progn (package-refresh-contents) (package-install 'compat))"
15
16
-compile:
17
- $(EMACS) -batch -L . -f batch-byte-compile gnuplot-*.el
+test: prepare
+ $(EMACS) --batch -L . -f package-initialize $(LOAD) -f ert-run-tests-batch-and-exit
18
+
19
+compile: prepare
20
+ $(EMACS) --batch -L . -f package-initialize -f batch-byte-compile gnuplot-*.el
21
22
clean:
23
rm -f *.elc
0 commit comments