branch: externals/a68-mode commit 6e83cabd939f78d2ede5dbd15fd88e8463553769 Author: Omar Polo <o...@omarpolo.com> Commit: Omar Polo <o...@omarpolo.com>
add a makefile for the byte-compilation --- Makefile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/Makefile b/Makefile new file mode 100644 index 0000000000..8844b6e45c --- /dev/null +++ b/Makefile @@ -0,0 +1,14 @@ +EMACS = emacs + +.PHONY: all compile clean + +all: compile + +compile: algol-mode.elc + +clean: + rm -f *.elc + +.SUFFIXES: .el .elc +.el.elc: + ${EMACS} -Q --batch -L . -f batch-byte-compile $<