summaryrefslogtreecommitdiff
path: root/ext/srt/Makefile.am
blob: bc504f8915192057ad1cc41c65b7996ec8582a16 (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
plugin_LTLIBRARIES = libgstsrt.la

libgstsrt_la_SOURCES = \
	gstsrt.c \
	gstsrtbasesrc.c \
	gstsrtclientsrc.c \
	gstsrtserversrc.c \
	gstsrtbasesink.c \
	gstsrtclientsink.c \
	gstsrtserversink.c \
	$(NULL)

libgstsrt_la_CFLAGS = \
    $(GST_PLUGINS_BASE_CFLAGS) \
    $(GST_CFLAGS) \
    $(GIO_CFLAGS) \
    $(SRT_CFLAGS) \
    $(NULL)

libgstsrt_la_LIBADD = \
    $(GST_PLUGINS_BASE_LIBS) \
    $(GST_LIBS) \
    $(GIO_LIBS) \
    -lgstbase-1.0 \
    $(SRT_LIBS) \
    $(NULL)

libgstsrt_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)

CLEANFILES = $(BUILT_SOURCES)

noinst_HEADERS = \
	gstsrt.h \
	gstsrtbasesrc.h \
	gstsrtclientsrc.h \
	gstsrtserversrc.h \
	gstsrtbasesink.h \
	gstsrtclientsink.h  \
	gstsrtserversink.h \
	$(NULL)

include $(top_srcdir)/common/gst-glib-gen.mak