]> code.delx.au - gnu-emacs-elpa/blobdiff - Makefile
s/`bbdb'/BBDB
[gnu-emacs-elpa] / Makefile
index d49adf31e104a38190ee35686bc2d7a363b2f05c..c52be4be3873cffc3d0bd7d024d3cd3bb8d84baf 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,3 +1,7 @@
+EMACS=emacs
+
+.PHONY: ert test test-batch
+
 package: *.el
        @ver=`grep -o "Version: .*" company.el | cut -c 10-`; \
        tar cjvf company-$$ver.tar.bz2 --mode 644 `git ls-files '*.el' | xargs`
@@ -8,9 +12,20 @@ elpa: *.el
        mkdir -p "$$dir"; \
        cp `git ls-files '*.el' | xargs` company-$$version; \
        echo "(define-package \"company\" \"$$version\" \
-       \"extensible inline text completion mechanism\")" \
+       \"Modular in-buffer completion framework\")" \
        > "$$dir"/company-pkg.el; \
        tar cvf company-$$version.tar --mode 644 "$$dir"
 
 clean:
-       @rm -rf company-*/ company-*.tar company-*.tar.bz2
+       @rm -rf company-*/ company-*.tar company-*.tar.bz2 *.elc ert.el
+
+test:
+       ${EMACS} -Q -nw -L . -l company-tests.el -l company-elisp-tests.el \
+       --eval "(let (pop-up-windows) (ert t))"
+
+test-batch:
+       ${EMACS} -Q --batch -L . -l company-tests.el -l company-elisp-tests.el \
+       --eval "(ert-run-tests-batch-and-exit '(not (tag interactive)))"
+
+compile:
+       ${EMACS} -Q --batch -L . -f batch-byte-compile company.el company-*.el