Add progress CB and subkey listing
[gpgme.git] / tests / Makefile.am
1 ## Process this file with automake to create Makefile.in
2
3 TESTS_ENVIRONMENT = GNUPGHOME=. 
4
5 TESTS = t-encrypt t-sign t-decrypt t-verify t-keylist t-export t-import 
6
7
8 EXTRA_DIST = mkdemodirs pubdemo.asc secdemo.asc cipher-1.asc geheim.txt \
9              pubkey-1.asc seckey-1.asc
10
11 INCLUDES = -I$(top_srcdir)/include -I$(top_srcdir)/intl
12
13 INCLUDES = 
14 LDADD = ../gpgme/libgpgme.la
15
16 # We don't run t-genkey in the test suite, because it taes too long
17 noinst_PROGRAMS = $(TESTS) t-genkey
18
19 distclean-local:
20         $(srcdir)/mkdemodirs --clean
21
22 all-local: ./pubring.gpg ./secring.gpg
23
24 ./pubring.gpg: $(srcdir)/pubdemo.asc
25         -gpg --homedir . --import $(srcdir)/pubdemo.asc
26
27 ./secring.gpg: ./Alpha/Secret.gpg 
28         -gpg --homedir . --allow-secret-key-import --import Alpha/Secret.gpg Zulu/Secret.gpg
29
30 ./Alpha/Secret.gpg: secdemo.asc 
31         srcdir=$(srcdir) $(srcdir)/mkdemodirs 
32
33
34
35
36
37
38