1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-12-22 10:19:57 +01:00

* Makefile.am: Do not list libraries in -lxxx format in a dependency line.

This commit is contained in:
David Shaw 2002-04-23 23:25:06 +00:00
parent cd7b3f9590
commit c55e2bcf46
2 changed files with 10 additions and 10 deletions

View File

@ -1,3 +1,8 @@
2002-04-23 David Shaw <dshaw@jabberwocky.com>
* Makefile.am: Do not list libraries in -lxxx format in a
dependency line.
2002-01-02 Stefan Bellon <sbellon@sbellon.de>
* gpgsplit.c [__riscos__]: Added RISC OS specific file name

View File

@ -20,8 +20,7 @@
EXTRA_DIST = lspgpot ring-a-party mail-signed-keys
INCLUDES = -I.. -I$(top_srcdir)/include -I$(top_srcdir)/intl
needed_libs = ../cipher/libcipher.a \
../mpi/libmpi.a ../util/libutil.a @INTLLIBS@
needed_libs = ../cipher/libcipher.a ../mpi/libmpi.a ../util/libutil.a
bin_PROGRAMS = gpgsplit
noinst_PROGRAMS = mpicalc bftest clean-sat mk-tdata shmtest
@ -37,14 +36,10 @@ shmtest_SOURCES = shmtest.c
gpgsplit_SOURCES = gpgsplit.c
mpicalc_LDADD = $(needed_libs)
bftest_LDADD = $(needed_libs)
mpicalc_LDADD = $(needed_libs) @INTLLIBS@
bftest_LDADD = $(needed_libs) @INTLLIBS@
shmtest_LDADD = $(needed_libs)
gpgsplit_LDADD = @ZLIBS@ $(needed_libs)
shmtest_LDADD = $(needed_libs) @INTLLIBS@
gpgsplit_LDADD = @ZLIBS@ $(needed_libs) @INTLLIBS@
mpicalc bftest shmtest gpgsplit: $(needed_libs)