12345678910111213141516171819202122232425262728 |
- ELISP_FILES := $(shell cask files)
- ELC_FILES := $(patsubst %.el,%.elc,$(ELISP_FILES))
- .PHONY: test compile clean
- .INTERMEDIATE: .compile.intermediate
- all: test
- # We run clean-elc first because undercover.el doesn't support elc
- # files. We run the tests first without loading flx-ido, and then with
- # it. We only send the coverage report when running the full test
- # suite.
- test: clean
- cask exec buttercup -L . tests
- test-with-flx: clean
- cask exec buttercup -L . tests tests-with-flx-ido
- all-tests: test test-with-flx
- compile: $(ELC_FILES)
- $(ELC_FILES): .compile.intermediate
- .compile.intermediate: $(ELISP_FILES)
- cask build
- clean:
- cask clean-elc
|