]> code.delx.au - gnu-emacs-elpa/blob - packages/loc-changes/Makefile.am
99b64db53509c53da4013e999031d4428a5b2ae1
[gnu-emacs-elpa] / packages / loc-changes / Makefile.am
1 lispdir = @lispdir@
2
3 lisp_files := $(wildcard *.el)
4 lisp_LISP = $(lisp_files)
5
6 include common.mk
7
8 EXTRA_DIST = $(lisp_files) $(test_files) README.md THANKS
9
10 test_files := $(wildcard test/test-*.el)
11
12 #: Run all tests without bloated output
13 check-short:
14 $(MAKE) check 2>&1 | ruby make-check-filter.rb
15
16 if MAINTAINER_MODE
17
18 CL = ChangeLog
19 ChangeLog:
20 git log --pretty --numstat --summary | $(GIT2CL) > $@
21
22 ACLOCAL_AMFLAGS=-I .
23
24 endif
25
26 #: Run all tests
27 test: check
28
29 #: Run all tests without bloated output
30 check-short:
31 $(MAKE) check 2>&1 | ruby make-check-filter.rb
32
33 check:
34 $(MAKE) -C test $@