aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 3b59df4188913f18b03f2c7cc77bf79e25d2ffce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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 $<