aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrian Cully <bjc@kublai.com>2022-02-19 09:24:19 -0500
committerBrian Cully <bjc@kublai.com>2022-02-19 09:24:19 -0500
commitd0a137d56005de3cff1828072911bfeda0179d09 (patch)
tree7e5df480daad98de6bd4bda621d6bdf0e1ec1ff6
parentf7c7ef3851079a77c54a8db68dca30e19d62a960 (diff)
downloadtramp-nspawn-d0a137d56005de3cff1828072911bfeda0179d09.tar.gz
tramp-nspawn-d0a137d56005de3cff1828072911bfeda0179d09.zip
Add Makefile for build testing outside of Emacs.
-rw-r--r--Makefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..3b59df4
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,13 @@
+EMACS?= emacs
+
+ELCS= nspawn-tramp.elc
+
+.PHONY: all clean
+
+all: $(ELCS)
+
+clean:
+ rm -f $(ELCS)
+
+%.elc: %.el
+ $(EMACS) -Q --batch -f batch-byte-compile $<