X-Git-Url: https://code.delx.au/gnu-emacs-elpa/blobdiff_plain/47a4acf4b910944bd6af2dbcdbd590b86e1ac711..ae0a4068aa5fc6634862a03b19d4187fc30b5115:/Makefile diff --git a/Makefile b/Makefile index c52be4be3..015f3acba 100644 --- a/Makefile +++ b/Makefile @@ -4,13 +4,13 @@ EMACS=emacs package: *.el @ver=`grep -o "Version: .*" company.el | cut -c 10-`; \ - tar cjvf company-$$ver.tar.bz2 --mode 644 `git ls-files '*.el' | xargs` + tar cjvf company-$$ver.tar.bz2 --mode 644 $$(find . -name \*.el) elpa: *.el @version=`grep -o "Version: .*" company.el | cut -c 10-`; \ dir=company-$$version; \ mkdir -p "$$dir"; \ - cp `git ls-files '*.el' | xargs` company-$$version; \ + cp $$(find . -name \*.el) company-$$version; \ echo "(define-package \"company\" \"$$version\" \ \"Modular in-buffer completion framework\")" \ > "$$dir"/company-pkg.el; \ @@ -20,11 +20,11 @@ clean: @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 \ + ${EMACS} -Q -nw -L . -l test/all.el \ --eval "(let (pop-up-windows) (ert t))" test-batch: - ${EMACS} -Q --batch -L . -l company-tests.el -l company-elisp-tests.el \ + ${EMACS} -Q --batch -L . -l test/all.el \ --eval "(ert-run-tests-batch-and-exit '(not (tag interactive)))" compile: