summaryrefslogtreecommitdiff
path: root/gst/fsrawconference/Makefile.am
blob: d09065de876a70291935114bf6a4115a5e1c6968 (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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
plugin_LTLIBRARIES = libfsrawconference.la


# First build a convenience lib with the common stuff so its not built twice

noinst_LTLIBRARIES = libfsrawconference-convenience.la

libfsrawconference_convenience_la_SOURCES = \
	fs-raw-conference.c \
	fs-raw-session.c \
	fs-raw-stream.c \
	fs-raw-participant.c

noinst_HEADERS = \
	fs-raw-conference.h \
	fs-raw-session.h \
	fs-raw-stream.h \
	fs-raw-participant.h


AM_CFLAGS = \
	$(FS_INTERNAL_CFLAGS) \
	$(FS_CFLAGS) \
	$(GST_PLUGINS_BASE_CFLAGS) \
	$(GST_CFLAGS)

# Build the main plugin

libfsrawconference_la_SOURCES = fs-raw-conference-plugin.c

libfsrawconference_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
libfsrawconference_la_LIBTOOLFLAGS = $(PLUGIN_LIBTOOLFLAGS)
libfsrawconference_la_LIBADD = \
	libfsrawconference-convenience.la \
	$(top_builddir)/farstream/libfarstream-@FS_APIVERSION@.la \
	$(FS_LIBS) \
	$(GST_BASE_LIBS) \
	$(GST_LIBS)

preferencesdir = $(datadir)/$(PACKAGE_TARNAME)/$(FS_APIVERSION)/fsrawconference
preferences_DATA = \
	default-element-properties

EXTRA_DIST = $(preferences_DATA)

# Optionally build a library to allow building the gtk-doc

if ENABLE_GTK_DOC
noinst_LTLIBRARIES += libfsrawconference_doc.la

nodist_libfsrawconference_doc_la_CFLAGS = -DBUILD_GTK_DOC

nodist_libfsrawconference_doc_la_SOURCES = \
	$(libfsrawconference_la_SOURCES)

libfsrawconference_doc_la_LIBADD = $(libfsrawconference_la_LIBADD)

CLEANFILES = $(BUILT_SOURCES)

endif