branch: elpa/highlight-parentheses
commit 723abf9b6092d7e19548316de1f907ed0d67c780
Author: Tassilo Horn <[email protected]>
Commit: Tassilo Horn <[email protected]>
Add Makefile
---
Makefile | 16 ++++++++++++++++
1 file changed, 16 insertions(+)
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..7977022
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,16 @@
+EMACS = emacs --batch -q -no-site-file -no-init-file
+
+ELS = $(wildcard *.el)
+OBJECTS = $(ELS:.el=.elc)
+BACKUPS = $(ELS:.el=.el~)
+
+.PHONY: compile clean emacs-version
+
+compile:
+ $(EMACS) -f batch-byte-compile $(ELS)
+
+clean:
+ rm -f $(OBJECTS) $(BACKUPS)
+
+emacs-version:
+ $(EMACS) $(BATCH) --version