Personal emacs config
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

19 lines
372 B

emacs ?= emacs
BEMACS = $(emacs) -batch -l targets/elpa.el
all: test
update:
$(emacs) -batch -l targets/install-deps.el
# Use LC_ALL=C to avoid locale dependencies in the dates!
test: clean
LC_ALL=C $(BEMACS) -l tiny-test.el -l tiny.el -f ert-run-tests-batch-and-exit
compile:
$(emacs) -Q -batch -f batch-byte-compile tiny.el
clean:
rm -f f.elc
.PHONY: all test