diff options
author | Werner Koch <wk@gnupg.org> | 2001-11-06 20:14:14 +0100 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 2001-11-06 20:14:14 +0100 |
commit | 4fcb72b3827f4ddc2acac031c4129b29ca4619e0 (patch) | |
tree | 93ebca8b7b6d0d66b2692717e65056c146448d6d /sm/Makefile.am | |
parent | First chunk of code for the Assuan library (diff) | |
download | gnupg2-4fcb72b3827f4ddc2acac031c4129b29ca4619e0.tar.xz gnupg2-4fcb72b3827f4ddc2acac031c4129b29ca4619e0.zip |
gpgsm does now build and a dummy server can be started.
Diffstat (limited to 'sm/Makefile.am')
-rw-r--r-- | sm/Makefile.am | 17 |
1 files changed, 7 insertions, 10 deletions
diff --git a/sm/Makefile.am b/sm/Makefile.am index bc2076e78..82a5e483a 100644 --- a/sm/Makefile.am +++ b/sm/Makefile.am @@ -18,19 +18,16 @@ ## Process this file with automake to produce Makefile.in -#INCLUDES = -I.. -I$(top_srcdir)/include -I$(top_srcdir)/intl -#EXTRA_DIST = - -#noinst_PROGRAMS = gpgd bin_PROGRAMS = gpgsm -gpgsm_SOURCES = gpgsm.c - +INCLUDES = -I$(top_srcdir)/include -I$(top_srcdir)/intl +LDFLAGS = @LDFLAGS@ $(LIBGCRYPT_LIBS) +gpgsm_SOURCES = \ + gpgsm.c gpgsm.h \ + util.h \ + server.c -#install-data-local: -# $(mkinstalldirs) $(DESTDIR)$(pkgdatadir) -# $(INSTALL_DATA) $(srcdir)/options.skel \ -# $(DESTDIR)$(pkgdatadir)/options.skel +gpgsm_LDADD = ../jnlib/libjnlib.a ../assuan/libassuan.a |