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

ELCS=	tramp-docker.elc

.PHONY:	all clean

all:	$(ELCS)

clean:
	rm -f $(ELCS)

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