1
0
mirror of https://gitlab.xiph.org/xiph/ezstream.git synced 2024-06-09 06:10:42 +00:00

Make xalloc, util, and log reusable as libcommon

This commit is contained in:
Moritz Grimm 2018-01-19 12:40:01 +01:00
parent 86bd51b39a
commit 4b4fee9ed0

View File

@ -1,6 +1,6 @@
AUTOMAKE_OPTIONS = 1.10 foreign subdir-objects
noinst_LTLIBRARIES = libezstream.la
noinst_LTLIBRARIES = libcommon.la libezstream.la
noinst_HEADERS = \
attributes.h \
cfg.h \
@ -19,6 +19,12 @@ noinst_HEADERS = \
stream.h \
util.h \
xalloc.h
libcommon_la_SOURCES = \
log.c \
util.c \
xalloc.c
libezstream_la_SOURCES = \
cfg.c \
cfg_decoder.c \
@ -28,13 +34,11 @@ libezstream_la_SOURCES = \
cfg_stream.c \
cfg_xmlfile.c \
cmdline.c \
log.c \
mdata.c \
playlist.c \
stream.c \
util.c \
xalloc.c
stream.c
libezstream_la_DEPENDENCIES = \
$(builddir)/libcommon.la \
$(top_builddir)/compat/libcompat.la
libezstream_la_LIBADD = @EZ_LIBS@ \
$(libezstream_la_DEPENDENCIES)