mirror of
https://gitlab.xiph.org/xiph/ezstream.git
synced 2025-01-03 14:56:35 -05:00
Make LIBOBJS available to libtool libs
This commit is contained in:
parent
8355fde68a
commit
9c842281fa
@ -1,5 +1,13 @@
|
||||
AUTOMAKE_OPTIONS = 1.10 foreign subdir-objects
|
||||
|
||||
EXTRA_DIST = compat.h
|
||||
noinst_LTLIBRARIES = libcompat.la
|
||||
noinst_HEADERS = compat.h
|
||||
libcompat_la_SOURCES =
|
||||
libcompat_la_DEPENDENCIES = @LTLIBOBJS@
|
||||
libcompat_la_LIBADD = $(libcompat_la_DEPENDENCIES)
|
||||
|
||||
AM_CPPFLAGS = @EZ_CPPFLAGS@
|
||||
AM_CFLAGS = @EZ_CFLAGS@
|
||||
AM_LDFLAGS = @EZ_LDFLAGS@ -avoid-version
|
||||
|
||||
CLEANFILES = *~ *.core core
|
||||
|
@ -26,8 +26,9 @@ libezstream_la_SOURCES = \
|
||||
playlist.c \
|
||||
util.c \
|
||||
xalloc.c
|
||||
libezstream_la_DEPENDENCIES =
|
||||
libezstream_la_LIBADD = @LIBOBJS@ @EZ_LIBS@ \
|
||||
libezstream_la_DEPENDENCIES = \
|
||||
$(top_builddir)/compat/libcompat.la
|
||||
libezstream_la_LIBADD = @EZ_LIBS@ \
|
||||
$(libezstream_la_DEPENDENCIES)
|
||||
|
||||
bin_SCRIPTS = ezstream-file.sh
|
||||
|
Loading…
Reference in New Issue
Block a user