diff options
author | Arun Isaac | 2019-05-20 16:26:45 +0530 |
---|---|---|
committer | Arun Isaac | 2019-05-20 16:35:27 +0530 |
commit | c00c305fc71068d3db76c63c959670dbf0f8dff5 (patch) | |
tree | 44a5c6c101180f5563dd1af1a79fe6bd3caa45e8 /Makefile | |
parent | a4b865d24281507706bf1b391a308f91ac8e5e6b (diff) | |
download | exiftool.el-c00c305fc71068d3db76c63c959670dbf0f8dff5.tar.gz exiftool.el-c00c305fc71068d3db76c63c959670dbf0f8dff5.tar.lz exiftool.el-c00c305fc71068d3db76c63c959670dbf0f8dff5.zip |
Add build and clean targets to Makefile.
* Makefile (build, clean): New targets.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -1,5 +1,11 @@ EMACS = emacs -.PHONY: check +.PHONY: build check clean +build: + $(EMACS) -Q --batch -L . --eval="(progn (setq byte-compile-debug t) (byte-recompile-directory \".\" 0))" + check: $(EMACS) -Q --batch -L . -l tests/exiftool-tests.el -f ert-run-tests-batch-and-exit + +clean: + rm -vf *.elc tests/*.elc |