mirror of
https://github.com/vale981/emacs-ipython-notebook
synced 2025-03-06 01:21:38 -05:00
40 lines
1,003 B
Makefile
40 lines
1,003 B
Makefile
EMACS = emacs
|
|
TESTEIN = tools/testein.py
|
|
|
|
testein-default:
|
|
$(TESTEIN) --clean-elc --load-ert
|
|
|
|
testein-24:
|
|
$(TESTEIN) --clean-elc -e emacs-snapshot
|
|
|
|
testein-unit-all:
|
|
$(TESTEIN) --no-func-test --clean-elc --load-ert
|
|
$(TESTEIN) --no-func-test --clean-elc -e emacs-snapshot
|
|
|
|
interactive-testein-default:
|
|
$(TESTEIN) --clean-elc --load-ert --no-batch
|
|
|
|
interactive-testein-24:
|
|
$(TESTEIN) --clean-elc -e emacs-snapshot --no-batch
|
|
|
|
ert-compile: ert-clean
|
|
cd lib/ert/lisp/emacs-lisp/ && \
|
|
$(EMACS) -Q -L . -batch -f batch-byte-compile *.el
|
|
|
|
ert-clean:
|
|
rm -f lib/ert/lisp/emacs-lisp/*.elc
|
|
|
|
env-ipy.0.13.0:
|
|
tools/makeenv.sh env/ipy.0.13.0 tools/requirement-ipy.0.13.0.txt
|
|
|
|
env-ipy.0.12.1:
|
|
tools/makeenv.sh env/ipy.0.12.1 tools/requirement-ipy.0.12.1.txt
|
|
|
|
env-ipy.0.12.0:
|
|
tools/makeenv.sh env/ipy.0.12.0 tools/requirement-ipy.0.12.0.txt
|
|
|
|
travis-ci: ert-compile
|
|
$(EMACS) --version
|
|
python --version
|
|
$(TESTEIN) --no-func-test --clean-elc -e $(EMACS)
|
|
tail -n3 log/test-load_messages_batch_$(EMACS).log
|