branch: externals/parser-generator
commit f9c83487f1449a9c7fdbe26e78a801e072cc7e7a
Author: Christian Johansson <[email protected]>
Commit: Christian Johansson <[email protected]>
Updated Travis and Makefil rule name
---
.travis.yml | 2 +-
Makefile | 4 ++--
README.md | 2 +-
3 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/.travis.yml b/.travis.yml
index bc41433..a3b7c6a 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -14,5 +14,5 @@ env:
script:
- emacs -Q -batch --eval '(message (emacs-version))'
- - emacs -Q -batch -L . -l test/parser-test.el
+ - make tests
diff --git a/Makefile b/Makefile
index 2c072f5..4db76fa 100644
--- a/Makefile
+++ b/Makefile
@@ -15,6 +15,6 @@ clean:
compile:
$(EMACS_CMD) -f batch-byte-compile $(EL)
-.PHONY: test
-test:
+.PHONY: tests
+tests:
$(EMACS_CMD) -l test/parser-test.el -f "parser-test"
diff --git a/README.md b/README.md
index 6f9baa2..e34f3ad 100644
--- a/README.md
+++ b/README.md
@@ -31,4 +31,4 @@ We use push down transducer (PDT) based algorithms:
## Test
-Run in terminal `make clean && make test && make compile`
+Run in terminal `make clean && make tests && make compile`