mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 07:47:17 +00:00
e4bba88ae9
Original commit message from CVS: * minor typographical change to autogen * added --with-html-dir option to configure * more robust docbook checks * convert to standard docbook makefiles, at least for the gst/ directory * added filesrc.h so that docbook can know about filesrc * updated -sections.txt because docbook is incredibly stupid and requires that at least one of the lines between <section> and </section> is not an entity * first pass at possible getting the docs to build on glib2, untested
47 lines
955 B
Makefile
47 lines
955 B
Makefile
filterdir = $(libdir)/gst
|
|
|
|
filter_LTLIBRARIES = libgstelements.la
|
|
|
|
if USE_LIBGHTTP
|
|
GSTHTTPSRC=gsthttpsrc.c
|
|
else
|
|
GSTHTTPSRC=
|
|
endif
|
|
|
|
libgstelements_la_DEPENDENCIES = ../libgst.la
|
|
libgstelements_la_SOURCES = \
|
|
gstelements.c \
|
|
gstfakesrc.c \
|
|
gstidentity.c \
|
|
gstfakesink.c \
|
|
gstdisksrc.c \
|
|
gstfilesrc.c \
|
|
gstdisksink.c \
|
|
gstfdsrc.c \
|
|
gstfdsink.c \
|
|
gstmultidisksrc.c \
|
|
gstpipefilter.c \
|
|
gsttee.c \
|
|
gstaggregator.c \
|
|
gststatistics.c \
|
|
$(GSTHTTPSRC)
|
|
|
|
noinst_HEADERS = \
|
|
gstfakesrc.h \
|
|
gstidentity.h \
|
|
gstfakesink.h \
|
|
gstdisksrc.h \
|
|
gstdisksink.h \
|
|
gstfdsrc.h \
|
|
gstmultidisksrc.h \
|
|
gsthttpsrc.h \
|
|
gstfdsink.h \
|
|
gstpipefilter.h \
|
|
gsttee.h \
|
|
gstaggregator.h \
|
|
gststatistics.h \
|
|
gstfilesrc.h
|
|
|
|
libgstelements_la_CFLAGS = $(GHTTP_CFLAGS) $(GLIB_CFLAGS) $(XML_CFLAGS) $(GST_CFLAGS)
|
|
libgstelements_la_LIBADD = $(GHTTP_LIBS) $(GLIB_LIBS) $(XML_LIBS)
|
|
libgstelements_la_LDFLAGS = -version-info $(GST_LIBVERSION)
|