aboutsummaryrefslogtreecommitdiffstats
path: root/tools/Makefile.am
blob: 2a33a0adbf1b5ad9d07cfbecf799866dd356dd42 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
## Process this file with automake to produce Makefile.in

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

mpicalc_SOURCES = mpicalc.c

bftest_SOURCES = bftest.c

clean_sat_SOURCES  = clean-sat.c


mpicalc_LDADD = @INTLLIBS@  $(needed_libs)
bftest_LDADD = @INTLLIBS@  $(needed_libs)

mpicalc bftest: $(needed_libs)