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, 6 insertions, 3 deletions
diff --git a/tools/Makefile.am b/tools/Makefile.am
index fb88d9171..5101e67a8 100644
--- a/tools/Makefile.am
+++ b/tools/Makefile.am
@@ -3,14 +3,17 @@
INCLUDES = -I$(top_srcdir)/include
needed_libs = ../cipher/libcipher.a ../util/libutil.a ../mpi/libmpi.a ../util/libutil.a
-noinst_PROGRAMS = mpicalc bftest
+noinst_PROGRAMS = mpicalc bftest clean-sat
mpicalc_SOURCES = mpicalc.c
bftest_SOURCES = bftest.c
+clean_sat_SOURCES = clean-sat.c
-LDADD = @INTLLIBS@ $(needed_libs)
-$(PROGRAMS): $(needed_libs)
+mpicalc_LDADD = @INTLLIBS@ $(needed_libs)
+bftest_LDADD = @INTLLIBS@ $(needed_libs)
+
+mpicalc bftest: $(needed_libs)