1
0
mirror of git://git.gnupg.org/gnupg.git synced 2025-01-05 12:31:50 +01:00
gnupg/tools/Makefile.am

20 lines
437 B
Makefile
Raw Normal View History

1997-11-18 14:06:00 +00:00
## Process this file with automake to produce Makefile.in
1998-02-09 17:43:42 +00:00
INCLUDES = -I$(top_srcdir)/include
needed_libs = ../cipher/libcipher.a ../util/libutil.a ../mpi/libmpi.a ../util/libutil.a
1997-11-18 14:06:00 +00:00
1998-02-11 23:22:09 +00:00
noinst_PROGRAMS = mpicalc bftest clean-sat
1997-11-18 14:06:00 +00:00
mpicalc_SOURCES = mpicalc.c
1998-01-28 16:09:43 +00:00
bftest_SOURCES = bftest.c
1997-11-18 14:06:00 +00:00
1998-02-11 23:22:09 +00:00
clean_sat_SOURCES = clean-sat.c
1997-11-18 14:06:00 +00:00
1998-01-28 16:09:43 +00:00
1998-02-11 23:22:09 +00:00
mpicalc_LDADD = @INTLLIBS@ $(needed_libs)
bftest_LDADD = @INTLLIBS@ $(needed_libs)
mpicalc bftest: $(needed_libs)
1997-11-18 14:06:00 +00:00