mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-04 16:39:39 +00:00
38ff9ae802
Original commit message from CVS: moved asyncdisksrc to disksrc, no point in having a distinction
44 lines
781 B
Makefile
44 lines
781 B
Makefile
filterdir = $(libdir)/gst
|
|
|
|
filter_LTLIBRARIES = libgstelements.la
|
|
|
|
if HAVE_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 \
|
|
gstfdsrc.c \
|
|
gstaudiosink.c \
|
|
gstaudiosrc.c \
|
|
gstfdsink.c \
|
|
gstpipefilter.c \
|
|
gsttee.c \
|
|
gstsinesrc.c \
|
|
$(GSTHTTPSRC)
|
|
|
|
noinst_HEADERS = \
|
|
gstfakesrc.h \
|
|
gstidentity.h \
|
|
gstfakesink.h \
|
|
gstdisksrc.h \
|
|
gstfdsrc.h \
|
|
gsthttpsrc.h \
|
|
gstaudiosink.h \
|
|
gstaudiosrc.h \
|
|
gstfdsink.h \
|
|
gstpipefilter.h \
|
|
gsttee.h \
|
|
gstsinesrc.h
|
|
|
|
CFLAGS += -O2 -Wall
|
|
|
|
libgstelements_la_LIBADD = $(GHTTP_LIBS)
|
|
libgstelements_la_LDFLAGS = -version-info $(GSTREAMER_LIBVERSION)
|