branch: externals/company commit 25f2fe8db7a56a4a887ae5f8637734af7ba9141c Author: YE <y...@ego.team> Commit: YE <y...@ego.team>
Remove outdated target elpa --- Makefile | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/Makefile b/Makefile index 59ed74a..0549228 100644 --- a/Makefile +++ b/Makefile @@ -1,23 +1,13 @@ EMACS=emacs -.PHONY: package elpa clean test test-gui test-batch compile compile-warn +.PHONY: package clean test test-gui test-batch compile compile-warn package: *.el @ver=`grep -o "Version: .*" company.el | cut -c 10-`; \ 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 $$(find . -name \*.el) company-$$version; \ - echo "(define-package \"company\" \"$$version\" \ - \"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 *.elc ert.el test/*.elc + @rm -rf company-*/ company-*.tar.bz2 *.elc ert.el test/*.elc test: ${EMACS} -Q -nw -L . -l test/all.el \