aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorBrian Cully <bjc@kublai.com>2022-02-19 16:21:24 -0500
committerGitHub <noreply@github.com>2022-02-19 16:21:24 -0500
commit8c5fbc479ebb1f795db08edd89495ab630123c42 (patch)
tree66fc89bbc243beaae5a6ebd2a8eba67660b55f17 /Makefile
parentf7c7ef3851079a77c54a8db68dca30e19d62a960 (diff)
parent6403f4f883fadb147a8c42d9123763913a90a850 (diff)
downloadtramp-nspawn-8c5fbc479ebb1f795db08edd89495ab630123c42.tar.gz
tramp-nspawn-8c5fbc479ebb1f795db08edd89495ab630123c42.zip
Merge pull request #1 from bjc/next
Pull in version 1.0.
Diffstat (limited to 'Makefile')
-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 $<