diff options
author | Werner Koch <wk@gnupg.org> | 2001-11-24 18:43:43 +0100 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 2001-11-24 18:43:43 +0100 |
commit | bab7fa0b297b8e99f5e222bbceda0716b62f7215 (patch) | |
tree | b3fe5f7ec7e1c1bed0bdd98f036c27d605106d15 /sm/Makefile.am | |
parent | Signing does now work. There is no secret key management yet, so you (diff) | |
download | gnupg2-bab7fa0b297b8e99f5e222bbceda0716b62f7215.tar.xz gnupg2-bab7fa0b297b8e99f5e222bbceda0716b62f7215.zip |
Added new directory common to enable sharing of some code and error
numbers between gpg, gpgsm and gpg-agent. Move some files and code to
there.
Diffstat (limited to 'sm/Makefile.am')
-rw-r--r-- | sm/Makefile.am | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/sm/Makefile.am b/sm/Makefile.am index 67cd8c7e6..5e26382e3 100644 --- a/sm/Makefile.am +++ b/sm/Makefile.am @@ -20,14 +20,13 @@ bin_PROGRAMS = gpgsm -INCLUDES = -I$(top_srcdir)/include -I$(top_srcdir)/intl +INCLUDES = -I$(top_srcdir)/common -I$(top_srcdir)/intl LDFLAGS = @LDFLAGS@ #$(LIBGCRYPT_LIBS) -BUILT_SOURCES = errors.c gpgsm_SOURCES = \ gpgsm.c gpgsm.h \ - util.h misc.c errors.c \ + misc.c \ keydb.c keydb.h \ server.c \ fingerprint.c \ @@ -41,11 +40,8 @@ gpgsm_SOURCES = \ gpgsm_LDADD = ../jnlib/libjnlib.a ../assuan/libassuan.a ../kbx/libkeybox.a \ + ../common/libcommon.a \ ../../libksba/src/.libs/libksba.a \ ../../libgcrypt/src/.libs/libgcrypt.so.1 -errors.c : gpgsm.h mkerrors - $(srcdir)/mkerrors < $(srcdir)/gpgsm.h > errors.c - - |