diff options
author | Brian Cully <bjc@kublai.com> | 2022-02-19 09:24:19 -0500 |
---|---|---|
committer | Brian Cully <bjc@kublai.com> | 2022-02-19 09:24:19 -0500 |
commit | d0a137d56005de3cff1828072911bfeda0179d09 (patch) | |
tree | 7e5df480daad98de6bd4bda621d6bdf0e1ec1ff6 | |
parent | f7c7ef3851079a77c54a8db68dca30e19d62a960 (diff) | |
download | tramp-nspawn-d0a137d56005de3cff1828072911bfeda0179d09.tar.gz tramp-nspawn-d0a137d56005de3cff1828072911bfeda0179d09.zip |
Add Makefile for build testing outside of Emacs.
-rw-r--r-- | Makefile | 13 |
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 $< |