branch: elpa/nasm-mode
commit c303d9189ceb81dee467d55dba7e79807dd01377
Author: Christopher Wellons <well...@nullprogram.com>
Commit: Christopher Wellons <well...@nullprogram.com>

    Add a Makefile for easy static analysis by the compiler
---
 Makefile | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..e7a79e4
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,11 @@
+.POSIX:
+.SUFFIXES: .el .elc
+EMACS = emacs
+
+compile: nasm-mode.elc
+
+clean:
+       rm -f nasm-mode.elc
+
+.el.elc:
+       $(EMACS) -Q -batch -f batch-byte-compile $<

Reply via email to