]> code.delx.au - gnu-emacs-elpa/blob - Makefile.am
f391799b19b0f6e6da332044976efde3026a6807
[gnu-emacs-elpa] / 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 if MAINTAINER_MODE
13
14 CL = ChangeLog
15 ChangeLog:
16 git log --pretty --numstat --summary | $(GIT2CL) > $@
17
18 ACLOCAL_AMFLAGS=-I .
19
20 endif
21
22 #: Run all tests
23 test: check
24
25 #: Run all tests without bloated output
26 check-short:
27 $(MAKE) check 2>&1 | ruby test/make-check-filter.rb
28
29 check:
30 $(MAKE) -C test $@