mirror of
https://github.com/vale981/emacs-ipython-notebook
synced 2025-03-05 17:11:41 -05:00

Otherwise, testein-default (using Emacs 23.3.1) fails with error "Lisp nesting exceeds `max-lisp-eval-depth'".
18 lines
426 B
Makefile
18 lines
426 B
Makefile
testein-default:
|
|
./testein.py --clean-elc --load-ert
|
|
|
|
testein-24:
|
|
./testein.py --clean-elc -e emacs-snapshot
|
|
|
|
interactive-testein-default:
|
|
./testein.py --clean-elc --load-ert --no-batch
|
|
|
|
interactive-testein-24:
|
|
./testein.py --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
|