diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 18 |
1 files changed, 3 insertions, 15 deletions
@@ -1,5 +1,5 @@ -LOAD_PATH = -L .deps -L . +LOAD_PATH = -L ../magit-popup -L ../dash.el -L . EMACS = emacs BATCH = $(EMACS) -Q --batch $(LOAD_PATH) CURL := curl --silent @@ -8,14 +8,11 @@ els := snakemake.el snakemake-mode.el elcs := $(patsubst %.el, %.elc, $(els)) AUTOLOADS_FILE = snakemake-autoloads.el -DASH_URL := https://raw.githubusercontent.com/magnars/dash.el/master/dash.el -POPUP_URL := https://raw.githubusercontent.com/magit/magit-popup/master/magit-popup.el - .PHONY: all all: $(elcs) $(AUTOLOADS_FILE) .PHONY: test -test: | .deps +test: @$(BATCH) -l snakemake-test \ --eval "(ert-run-tests-batch-and-exit '(not (tag interactive)))" @@ -25,18 +22,9 @@ $(AUTOLOADS_FILE): $(els) (generated-autoload-file \"$(CURDIR)/$@\")) \ (update-directory-autoloads \"$(CURDIR)/\"))" -.deps: - mkdir -p .deps - $(CURL) $(DASH_URL) > .deps/dash.el - $(CURL) $(POPUP_URL) > .deps/magit-popup.el - -%.elc: %.el | .deps +%.elc: %.el @$(BATCH) -f batch-byte-compile $< .PHONY: clean clean: $(RM) $(elcs) $(AUTOLOADS_FILE) - -.PHONY: clean-all -clean-all: clean - $(RM) -r .deps |