Not sure if this commit is correct and/or why it should be needed (if

it is correct).

We note a dependencies between cd-paranoia and its libraries. Section
7.4 "Program and Library Variables" of the automake 1.9.5 manual says:

     If `_DEPENDENCIES' is not supplied, it is computed by Automake.
     The automatically-assigned value is the contents of `_LDADD' or
     `_LIBADD', with most configure substitutions, `-l', `-L',
     `-dlopen' and `-dlpreopen' options removed.  The configure
     substitutions that are left in are only `$(LIBOBJS)' and
     `$(ALLOCA)'; these are left because it is known that they will not
     cause an invalid value for `_DEPENDENCIES' to be generated.
This commit is contained in:
rocky
2005-10-18 01:21:37 +00:00
parent 4efa6efeb9
commit 5d98725c10

View File

@@ -1,4 +1,4 @@
# $Id: Makefile.am,v 1.17 2005/10/16 22:21:14 rocky Exp $
# $Id: Makefile.am,v 1.18 2005/10/18 01:21:37 rocky Exp $
#
# Copyright (C) 2004, 2005 Rocky Bernstein <rocky@panix.com>
# Copyright (C) 1998 Monty xiphmont@mit.edu
@@ -37,6 +37,9 @@ cd_paranoia_SOURCES = cd-paranoia.c \
cd_paranoia_LDADD = $(LIBCDIO_LIBS) $(LIBCDIO_CDDA_LIBS) $(LIBCDIO_PARANOIA_LIBS) @LIBGETOPT_LIB@
cd_paranoia_DEPENDENCIES = $(LIBCDIO_LIBS) $(LIBCDIO_CDDA_LIBS) $(LIBCDIO_PARANOIA_LIBS) @LIBGETOPT_LIB@
bin_PROGRAMS = cd-paranoia
INCLUDES = -I$(top_srcdir) $(LIBCDIO_CFLAGS)