branch: externals/csharp-mode commit e277562a970f7e3f69e7a0e8e192c93e75c8b28c Author: Nathan Phillip Brink <bi...@gentoo.org> Commit: Nathan Phillip Brink <bi...@gentoo.org>
Set all as the default Makefile target. --- makefile | 4 ++-- run-travis-ci.sh | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/makefile b/makefile index 012896a..061ce26 100644 --- a/makefile +++ b/makefile @@ -8,6 +8,8 @@ EMACS="$(shell which emacs)" -Q -batch -L . ELS = csharp-mode.el csharp-mode-tests.el ELCS = $(ELS:.el=.elc) +all: $(ELCS) test package + package: $(PACKAGE_DIR) tar cvf ../$(PACKAGE_NAME).tar --exclude="*#" --exclude="*~" --exclude="*tests*" --exclude="test-files" --exclude "*-pkg.el.template*" --exclude="makefile" --exclude="run-travis-ci.sh" -C $(PACKAGE_DIR)/.. $(PACKAGE_NAME) @@ -22,8 +24,6 @@ test: %.elc: %.el $(EMACS) -f batch-byte-compile $< -all: $(ELCS) test package - clean: rm -f ../$(PACKAGE_NAME).tar rm -rf $(PACKAGE_DIR) diff --git a/run-travis-ci.sh b/run-travis-ci.sh index f73d79d..e255a6a 100755 --- a/run-travis-ci.sh +++ b/run-travis-ci.sh @@ -11,4 +11,4 @@ echo "ECUKES_EMACS = $ECUKES_EMACS" echo # bytecompile, tests, package -make all +make