emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/highlight-parentheses 723abf9 40/49: Add Makefile


From: ELPA Syncer
Subject: [nongnu] elpa/highlight-parentheses 723abf9 40/49: Add Makefile
Date: Sun, 15 Aug 2021 03:57:49 -0400 (EDT)

branch: elpa/highlight-parentheses
commit 723abf9b6092d7e19548316de1f907ed0d67c780
Author: Tassilo Horn <tsdh@gnu.org>
Commit: Tassilo Horn <tsdh@gnu.org>

    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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]