branch: externals/realgud-trepan-ni commit fc5f62f565e7e5df696508157f0bb2ae7c982dfc Author: rocky <ro...@gnu.org> Commit: rocky <ro...@gnu.org>
Travis 2nd try --- test/Makefile.am | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/test/Makefile.am b/test/Makefile.am index fbfb2c6..00bf71c 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -1,5 +1,9 @@ include $(top_srcdir)/common.mk +lisp_files = $(wildcard *.el) +lisp_LISP = $(lisp_files) +EXTRA_DIST = $(lisp_files) + PHONY=check test all check-elget test-elget help #: overall help on running the make targets @@ -44,8 +48,8 @@ EL_GET_CHECK_FILES = $(notdir $(test_files:.el=.elrun)) #: Run all tests check: $(CHECK_FILES) -#: Run all tests via el-get -check-elget: $(EL_GET_CHECK_FILES) +#: Run all tests via cask +check-cask: $(EL_GET_CHECK_FILES) #: Run all tests with minimum verbosity check-short: @@ -58,9 +62,9 @@ check-short-elget: test-%.run: (cd $(top_srcdir)/test && EMACSLOADPATH=$(EMACSLOADPATH) $(EMACS) --batch --no-site-file --no-splash --load $(@:.run=.el)) -#: Run tests using el-get to specify external Lisp dependencies +#: Run tests using cask to specify external Lisp dependencies test-%.elrun: - (cd $(top_srcdir)/test && EMACSLOADPATH=$(EMACSLOADPATH) $(EMACS) --batch --no-site-file --no-splash --load ../el-get-install.el --load $(@:.elrun=.el)) + (cd $(top_srcdir)/test && $(EMACS) --batch --no-site-file --no-splash --load ../cask-install.el --load $(@:.elrun=.el)) install-lispLISP: $(lisp_LISP) $(ELCFILES)