An interface to the twister microblogging application from Emacs
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.
 
 

13 lines
254 B

emacs ?= emacs
all: test
test: clean
cask exec emacs -Q -batch -l twister-rpc.el -l ert-tests/twister-rpc-test.el -f ert-run-tests-batch-and-exit
compile:
$(emacs) -Q -batch -f batch-byte-compile twister-rpc.el
clean:
rm -f f.elc
.PHONY: all test