aboutsummaryrefslogtreecommitdiffstats
path: root/tools/Makefile.am
diff options
context:
space:
mode:
Diffstat (limited to 'tools/Makefile.am')
-rw-r--r--tools/Makefile.am9
1 files changed, 8 insertions, 1 deletions
diff --git a/tools/Makefile.am b/tools/Makefile.am
index 701a7e520..e8f9297c2 100644
--- a/tools/Makefile.am
+++ b/tools/Makefile.am
@@ -23,6 +23,7 @@ INCLUDES = -I$(top_srcdir)/include -I$(top_srcdir)/intl
needed_libs = ../cipher/libcipher.a \
../mpi/libmpi.a ../util/libutil.a @INTLLIBS@
+bin_PROGRAMS = gpgsplit
noinst_PROGRAMS = mpicalc bftest clean-sat mk-tdata shmtest
mpicalc_SOURCES = mpicalc.c
@@ -33,11 +34,17 @@ clean_sat_SOURCES = clean-sat.c
mk_tdata_SOURCES = mk-tdata.c
shmtest_SOURCES = shmtest.c
+gpgsplit_SOURCES = gpgsplit.c
+
mpicalc_LDADD = $(needed_libs)
bftest_LDADD = $(needed_libs)
shmtest_LDADD = $(needed_libs)
+gpgsplit_LDADD = $(needed_libs)
+
+mpicalc bftest shmtest gpgsplit: $(needed_libs)
+
+
-mpicalc bftest shmtest: $(needed_libs)