diff options
Diffstat (limited to 'tools/Makefile.am')
-rw-r--r-- | tools/Makefile.am | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/Makefile.am b/tools/Makefile.am index 3b43090c8..fb88d9171 100644 --- a/tools/Makefile.am +++ b/tools/Makefile.am @@ -1,6 +1,7 @@ ## Process this file with automake to produce Makefile.in -INCLUDES = -I.. -I$(top_srcdir)/include +INCLUDES = -I$(top_srcdir)/include +needed_libs = ../cipher/libcipher.a ../util/libutil.a ../mpi/libmpi.a ../util/libutil.a noinst_PROGRAMS = mpicalc bftest @@ -9,8 +10,7 @@ mpicalc_SOURCES = mpicalc.c bftest_SOURCES = bftest.c -LDADD = -L ../cipher -L ../mpi -L ../util -L ../cipher \ - -lmpi -lutil -lmpi -lutil -lcipher +LDADD = @INTLLIBS@ $(needed_libs) -$(PROGRAMS): ../mpi/libmpi.a ../cipher/libcipher.a +$(PROGRAMS): $(needed_libs) |