Codebase list linum-relative / 1022ed91-3c69-48dd-8b31-f0e2594ef533/0.6-2.1 Makefile
1022ed91-3c69-48dd-8b31-f0e2594ef533/0.6-2.1

Tree @1022ed91-3c69-48dd-8b31-f0e2594ef533/0.6-2.1 (Download .tar.gz)

Makefile @1022ed91-3c69-48dd-8b31-f0e2594ef533/0.6-2.1raw · history · blame

EMACS ?= emacs
BATCH := $(EMACS) $(EFLAGS) -batch -q -no-site-file -L .

all: linum-relative.elc

README.md: make-readme-markdown.el
	emacs --script $< <linum-relative.el>$@ 2>/dev/null
make-readme-markdown.el:
	wget -q -O $@ https://raw.github.com/mgalgs/make-readme-markdown/master/make-readme-markdown.el
.INTERMEDIATE: make-readme-markdown.el

clean:
	$(RM) *.elc

%.elc: %.el
	$(BATCH) --eval '(byte-compile-file "$<")'


.PHONY: check clean README.md