blob: 0c5b9e6810fad9d6d48cfdd54e9913fc4f277b38 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
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)
|