Makefile (299B)
1 EMACS ?= emacs 2 3 all: macrostep.elc macrostep-c.elc 4 5 clean: 6 rm -f *.elc 7 8 test: clean all 9 $(EMACS) --batch -L . --load macrostep-test.el 10 11 sandbox: all 12 $(EMACS) -Q -L . --load macrostep --load macrostep-c 13 14 %.elc: %.el 15 $(EMACS) --batch -L . --funcall batch-byte-compile "$<" 16 17 .PHONY: test all clean