-
Notifications
You must be signed in to change notification settings - Fork 6
/
Makefile.am
76 lines (65 loc) · 1.44 KB
/
Makefile.am
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
71
72
73
74
75
76
if WITH_PAM
PAM_DIR = pam
else
PAM_DIR =
endif
if WITH_TESTS
TESTS_DIR = testing
else
TESTS_DIR =
endif
SUBDIRS = \
. \
egg \
gck \
gcr \
ui \
pkcs11 \
schema \
daemon \
tool \
$(TESTS_DIR) \
$(PAM_DIR) \
po \
man \
docs
ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
EXTRA_DIST = \
intltool-extract.in \
intltool-merge.in \
intltool-update.in \
HACKING
DISTCLEANFILES = \
intltool-extract \
intltool-merge \
intltool-update
dist-hook:
@if test -d "$(srcdir)/.git"; \
then \
echo Creating ChangeLog && \
( cd "$(top_srcdir)" && \
echo '# Generated by Makefile. Do not edit.'; echo; \
$(top_srcdir)/missing --run git log --stat ) > ChangeLog.tmp \
&& mv -f ChangeLog.tmp $(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
coverage:
mkdir -p testing/coverage
$(LCOV) --directory docs/ --zerocounters
$(LCOV) --directory . --capture --output-file testing/coverage.info
$(GENHTML) --output-directory testing/coverage testing/coverage.info
$(LCOV) --directory . --zerocounters
@echo "file://$(abs_top_builddir)/testing/coverage/index.html"
clear-coverage:
$(LCOV) --directory . --zerocounters
endif
if WITH_GNU_MAKE
# Include this local file if it exists
-include Makefile.local
endif