summaryrefslogtreecommitdiff
path: root/Makefile.am
blob: ca70b917e7391430b97ad525d512b2eb47f17232 (plain)
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
if WITH_PAM
PAM_DIR = pam
else
PAM_DIR = 
endif

if WITH_TESTS
TESTS_DIR = testing
else
TESTS_DIR = 
endif

SUBDIRS = \
	. \
	gp11 \
	egg \
	gcr \
	ui \
	pkcs11 \
	daemon \
	tool \
	$(TESTS_DIR) \
	$(PAM_DIR) \
	po \
	docs

EXTRA_DIST = \
	intltool-extract.in \
	intltool-merge.in \
	intltool-update.in \
	ChangeLog.old \
	HACKING

DISTCHECK_CONFIGURE_FLAGS = --enable-gtk-doc --enable-tests

DISTCLEANFILES = \
	intltool-extract \
	intltool-merge \
	intltool-update

CHANGELOG_START = \
	efb922c92fae5929ecc8c702770ebb6c390d38a4

dist-hook:
	@if test -d "$(srcdir)/.git"; \
	then \
		echo Creating ChangeLog && \
		( cd "$(top_srcdir)" && \
		  echo '# Generate automatically. Do not edit.'; echo; \
		  $(top_srcdir)/missing --run git log $(CHANGELOG_START).. --stat --date=short ) > ChangeLog.tmp \
		&& mv -f ChangeLog.tmp $(top_distdir)/ChangeLog \
		|| ( rm -f ChangeLog.tmp ; \
		     echo Failed to generate ChangeLog >&2 ); \
	else \
		echo A git clone is required to generate a ChangeLog >&2; \
	fi

install-pam:
	@echo "WARNING: install-pam is no longer used, use the --with-pam-dir configure option instead"

if WITH_COVERAGE
check-am:
	$(LCOV) --directory . --zerocounters

coverage: check
	mkdir -p testing/coverage
	$(LCOV) --directory . --capture --output-file testing/coverage.info
	$(GENHTML) --output-directory testing/coverage testing/coverage.info
	@echo "file://$(abs_top_builddir)/testing/coverage/index.html"
endif