Codebase list emacs-git-messenger / 7e41b4a9-7677-46bd-8b3f-1a35dcf37388/main Makefile
7e41b4a9-7677-46bd-8b3f-1a35dcf37388/main

Tree @7e41b4a9-7677-46bd-8b3f-1a35dcf37388/main (Download .tar.gz)

Makefile @7e41b4a9-7677-46bd-8b3f-1a35dcf37388/mainraw · history · blame

.PHONY : test

EMACS ?= emacs
CASK ?= cask

LOADPATH = -L .

ELPA_DIR = $(shell EMACS=$(EMACS) $(CASK) package-directory)

test: elpa
	$(CASK) exec $(EMACS) -Q -batch $(LOADPATH) \
		-l test/test.el \
		-f ert-run-tests-batch-and-exit

elpa: $(ELPA_DIR)
$(ELPA_DIR): Cask
	$(CASK) install
	touch $@