All checks were successful
/ Test config on 20 (push) Successful in 27s
15 lines
138 B
Makefile
15 lines
138 B
Makefile
emacs ?= emacs
|
|
EASK ?= eask
|
|
|
|
all: compile
|
|
|
|
eask:
|
|
$(EASK)
|
|
|
|
compile:
|
|
$(EASK) compile
|
|
|
|
.PHONY: all compile clean cask
|
|
|
|
clean:
|
|
rm -f *.elc
|