diff options
Diffstat (limited to '')
-rw-r--r-- | g10/Makefile.am | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/g10/Makefile.am b/g10/Makefile.am index fe442cf4d..ba686481c 100644 --- a/g10/Makefile.am +++ b/g10/Makefile.am @@ -48,6 +48,13 @@ else card_source = endif +if NO_TRUST_MODELS +trust_source = +else +trust_source = trustdb.c trustdb.h tdbdump.c tdbio.c tdbio.h +endif + + if HAVE_W32_SYSTEM resource_objs += gpg-w32info.o endif @@ -103,11 +110,6 @@ gpg2_SOURCES = gpg.c \ dearmor.c \ import.c \ export.c \ - trustdb.c \ - trustdb.h \ - tdbdump.c \ - tdbio.c \ - tdbio.h \ delkey.c \ keygen.c \ helptext.c \ @@ -116,6 +118,7 @@ gpg2_SOURCES = gpg.c \ call-dirmngr.c call-dirmngr.h \ photoid.c photoid.h \ call-agent.c call-agent.h \ + trust.c $(trust_source) \ $(card_source) \ exec.c exec.h |