From d0a137d56005de3cff1828072911bfeda0179d09 Mon Sep 17 00:00:00 2001 From: Brian Cully Date: Sat, 19 Feb 2022 09:24:19 -0500 Subject: Add Makefile for build testing outside of Emacs. --- Makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Makefile 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 $< -- cgit v1.2.3