summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorWerner Koch <wk@gnupg.org>1998-07-30 19:37:03 +0200
committerWerner Koch <wk@gnupg.org>1998-07-30 19:37:03 +0200
commit0300d6aefc270507ed4cbf6942c5ab053fd60ed9 (patch)
tree39a1e4eb561325c3f6679f96cf7ac88a8860d27c /tools
parentedit-key is now complete (diff)
downloadgnupg2-0300d6aefc270507ed4cbf6942c5ab053fd60ed9.tar.xz
gnupg2-0300d6aefc270507ed4cbf6942c5ab053fd60ed9.zip
started with shm coprocesses
Diffstat (limited to 'tools')
-rw-r--r--tools/Makefile.am5
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/Makefile.am b/tools/Makefile.am
index 16a48bb93..249ce85d9 100644
--- a/tools/Makefile.am
+++ b/tools/Makefile.am
@@ -4,7 +4,7 @@ INCLUDES = -I$(top_srcdir)/include -I$(top_srcdir)/intl -I../intl
needed_libs = ../cipher/libcipher.a ../util/libutil.a \
../mpi/libmpi.a ../util/libutil.a
-noinst_PROGRAMS = mpicalc bftest clean-sat mk-tdata
+noinst_PROGRAMS = mpicalc bftest clean-sat mk-tdata shmtest
mpicalc_SOURCES = mpicalc.c
@@ -12,10 +12,13 @@ bftest_SOURCES = bftest.c
clean_sat_SOURCES = clean-sat.c
mk_tdata_SOURCES = mk-tdata.c
+shmtest_SOURCES = shmtest.c
mpicalc_LDADD = @INTLLIBS@ $(needed_libs)
bftest_LDADD = @INTLLIBS@ $(needed_libs)
+shmtest_LDADD = @INTLLIBS@ $(needed_libs)
+
mpicalc bftest: $(needed_libs)