Blob


1 EMACS = emacs
3 .PHONY: all compile clean
5 all: compile
7 compile: a68-mode.elc
9 clean:
10 rm -f *.elc
12 .SUFFIXES: .el .elc
13 .el.elc:
14 ${EMACS} -Q --batch -L . -f batch-byte-compile $<