]> code.delx.au - gnu-emacs-elpa/blob - packages/load-relative/Makefile.am
Add 'packages/realgud/' from commit 'd811316e6a0f4eeee8a1347f504c196c86baa2cb'
[gnu-emacs-elpa] / packages / load-relative / Makefile.am
1 lisp_files := $(wildcard *.el)
2 lisp_LISP = $(lisp_files)
3
4 PHONY=check check-short clean dist distclean test
5
6 EXTRA_DIST = $(lisp_files) $(test_files) README.md THANKS COPYING
7 GIT2CL ?= git2cl
8
9 #: Run all tests
10 check: $(test-files)
11 $(MAKE) -C test check
12
13 #: Run all tests with minimum verbosity
14 check-short:
15 $(MAKE) -C test check 2>&1 | ruby make-check-filter.rb
16
17
18 #: same as check
19 test: check
20
21 #: same as check-short
22 test-short: check-short
23
24 #: Read this first.
25 README: README.md
26 ln -s README.md README
27
28 if MAINTAINER_MODE
29
30 CL = ChangeLog
31 #: Create a log file from the individual commits via git2cl
32 ChangeLog:
33 git log --pretty --numstat --summary | $(GIT2CL) > $@
34
35 ACLOCAL_AMFLAGS=-I .
36
37 endif