blob: 35fc63ce6710b2f7e3a1a0eff900db67bf7b55e0 (
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
|
include $(top_srcdir)/Makefile.decl
INCLUDES = \
-I$(top_builddir) \
-I$(top_srcdir) \
-DSRCDIR="\"@abs_srcdir@\"" \
-DGCR_API_SUBJECT_TO_CHANGE \
-DGCK_API_SUBJECT_TO_CHANGE \
-DGCR_COMPILATION \
$(GLIB_CFLAGS) \
$(LIBGCRYPT_CFLAGS) \
$(P11_KIT_CFLAGS)
LDADD = \
$(top_builddir)/gcr/libgcr-base-@GCR_MAJOR@.la \
$(top_builddir)/egg/libegg.la \
$(top_builddir)/gck/libgck-testable.la \
$(GLIB_LIBS) \
$(LIBGCRYPT_LIBS) \
$(P11_KIT_LIBS)
TEST_PROGS = \
test-util \
test-filter-collection \
test-secret-exchange \
test-simple-certificate \
test-certificate \
test-certificate-chain \
test-subject-public-key \
test-fingerprint \
test-pkcs11-certificate \
test-openpgp \
test-openssh \
test-secure-memory \
test-trust \
test-parser \
test-record \
test-memory-icon \
test-gnupg-key \
test-gnupg-collection \
test-gnupg-process \
test-system-prompt
check_PROGRAMS = $(TEST_PROGS)
test: $(TEST_PROGS)
chmod -f 700 $(srcdir)/files/gnupg-homedir
gtester --verbose -m $(TEST_MODE) --g-fatal-warnings $(TEST_PROGS)
check-local: test
check-memory: perform-memcheck
all-local: $(check_PROGRAMS)
EXTRA_DIST = \
files
# ------------------------------------------------------------------
noinst_PROGRAMS = \
frob-openpgp \
frob-parser
noinst_PROGRAMS += \
frob-certificate-request \
frob-parser
frob_certificate_request_SOURCES = \
frob-certificate-request.c \
console-interaction.c console-interaction.h
|