blob: ed9db2da5647bd8ac00ad813db2c4d5d76e42e5d (
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
71
72
73
74
75
76
77
78
79
80
|
if WITH_PAM
PAM_DIR = pam
else
PAM_DIR =
endif
SUBDIRS = \
. \
egg \
gck \
gcr \
ui \
pkcs11 \
schema \
daemon \
tool \
testing \
$(PAM_DIR) \
po \
docs
ACLOCAL_AMFLAGS = ${ACLOCAL_FLAGS}
EXTRA_DIST = \
intltool-extract.in \
intltool-merge.in \
intltool-update.in \
ChangeLog.old \
HACKING
DISTCHECK_CONFIGURE_FLAGS = \
--enable-gtk-doc \
--enable-strict \
--disable-coverage \
--disable-update-mime \
--with-pkcs11-modules=$(abs_srcdir)/$(top_distdir)/_inst/lib/
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
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
|