blob: fec35da580ea0145e53ab5c2d84ced1d42688d65 (
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
81
82
83
84
85
86
87
88
89
90
91
|
NULL =
if WITH_PAM
PAM_DIR = pam
else
PAM_DIR =
endif
SUBDIRS = \
. \
egg \
pkcs11 \
schema \
daemon \
tool \
testing \
$(PAM_DIR) \
po
ACLOCAL_AMFLAGS = ${ACLOCAL_FLAGS}
EXTRA_DIST = \
intltool-extract.in \
intltool-merge.in \
intltool-update.in \
ChangeLog.old \
HACKING
DISTCHECK_CONFIGURE_FLAGS = \
--enable-doc \
--disable-strict \
--disable-coverage \
--disable-update-mime \
--with-pkcs11-modules=$(abs_srcdir)/$(top_distdir)/_inst/lib \
--with-pkcs11-config=$(abs_srcdir)/$(top_distdir)/_inst/etc/pkcs11 \
$(NULL)
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 ENABLE_DOC
SUBDIRS += docs
distcheck-hook:
@true
else
distcheck-hook:
@echo "*** doc must be enabled (with --enable-doc) in order to make distcheck"
@false
endif
upload-release: $(DIST_ARCHIVES)
scp $(DIST_ARCHIVES) master.gnome.org:
ssh master.gnome.org ftpadmin install $(DIST_ARCHIVES)
|