aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: dacd623ee8ad486e0d7e4df8fa5a617bdd47bec9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
EMACS?=	emacs

ELCS=	tramp-nspawn.elc

.PHONY:	all clean

all:	$(ELCS)

clean:
	rm -f $(ELCS)

%.elc:	%.el
	$(EMACS) -Q --batch -f batch-byte-compile $<