diff options
author | Werner Koch <[email protected]> | 1998-10-21 17:34:36 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 1998-10-21 17:34:36 +0000 |
commit | e309a875cb938dff76983d00552ebcc08a5e90c1 (patch) | |
tree | a10cbf247317e67fcb623d7c10dfa4b4c58edbfd /tools | |
parent | Snapshot release 0.4.2 (diff) | |
download | gnupg-e309a875cb938dff76983d00552ebcc08a5e90c1.tar.gz gnupg-e309a875cb938dff76983d00552ebcc08a5e90c1.zip |
Epxerimenta support for GDBM keyings.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/Makefile.am | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tools/Makefile.am b/tools/Makefile.am index e3c8975d3..418df21ca 100644 --- a/tools/Makefile.am +++ b/tools/Makefile.am @@ -1,8 +1,8 @@ ## Process this file with automake to produce Makefile.in -INCLUDES = -I$(top_srcdir)/include -I$(top_srcdir)/intl +INCLUDES = -I$(top_srcdir)/include needed_libs = ../cipher/libcipher.a ../util/libutil.a \ - ../mpi/libmpi.a ../util/libutil.a + ../mpi/libmpi.a ../util/libutil.a @INTLLIBS@ noinst_PROGRAMS = mpicalc bftest clean-sat mk-tdata shmtest @@ -15,10 +15,10 @@ mk_tdata_SOURCES = mk-tdata.c shmtest_SOURCES = shmtest.c -mpicalc_LDADD = @INTLLIBS@ $(needed_libs) -bftest_LDADD = @INTLLIBS@ $(needed_libs) +mpicalc_LDADD = $(needed_libs) +bftest_LDADD = $(needed_libs) -shmtest_LDADD = @INTLLIBS@ $(needed_libs) +shmtest_LDADD = $(needed_libs) mpicalc bftest shmtest: $(needed_libs) |