Makefile (244B)
1 emacs ?= emacs 2 3 update: 4 $(emacs) -batch -l test/make-update.el 5 6 compile: clean 7 $(emacs) -batch -l test/elpa.el -l test/make-compile.el 8 9 plain: 10 $(emacs) -Q -l test/elpa.el -l test/make-plain 11 12 clean: 13 rm -f *.elc 14 15 .PHONY: update compile clean