1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
EXTRA_DIST = README.md
ACLOCAL_AMFLAGS = -I m4
SUBDIRS = \
services \
daemon \
client \
doc \
suse \
compilerwrapper \
scheduler \
tests \
unittests
dist-hook:
( cd $(top_srcdir) && git log --date=short --pretty="format:@%cd %an <%ae> [%H]%n%n%s%n%n%e%b" | sed -e "s|^\([^@]\)|\t\1|" -e "s|^@||" ) >$(distdir)/ChangeLog
test: install
# 'make test' also depends on 'make check', but using plain 'test: check' dependency breaks with recursive make
$(MAKE) check
$(MAKE) -C tests $@
test-strict: install
$(MAKE) check
$(MAKE) -C tests $@
|