branch: externals/org-transclusion commit a0f3464377c6b07208ae03653f745e0af11bffaf Author: Noboru Ota <m...@nobiot.com> Commit: Noboru Ota <m...@nobiot.com>
intrnl:Makefile edit --- Makefile | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index e6ea833526..80c44f7564 100644 --- a/Makefile +++ b/Makefile @@ -1,12 +1,16 @@ docs/org-transclusion.org: docs/org-transclusion-manual.org - emacs --batch -L "$$(pwd)" -l org-transclusion $< \ - --eval '(progn (org-transclusion-add-all) (write-region nil nil "org-transclusion.org"))' + -emacs --batch -L "$$(pwd)" -l org-transclusion $< \ + --eval '(progn (org-transclusion-add-all) (write-region nil nil "org-transclusion.org"))' + +.PHONY: test-compile test-compile: emacs --batch --eval "(add-to-list 'load-path default-directory)" \ - -f batch-byte-compile ./*.el - # Check declare-function + -f batch-byte-compile ./*.el + # Check declare-function emacs --batch --eval "(check-declare-directory default-directory)" +.PHONY: clean clean: find . -name "*.elc" -delete +