You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

15 lines
244 B

emacs ?= emacs
update:
$(emacs) -batch -l test/make-update.el
compile: clean
$(emacs) -batch -l test/elpa.el -l test/make-compile.el
plain:
$(emacs) -Q -l test/elpa.el -l test/make-plain
clean:
rm -f *.elc
.PHONY: update compile clean