summaryrefslogtreecommitdiff
path: root/Makefile.am
blob: 744c012a6dfa27f301f5eaa1f0a3456f77be7e5a (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
EXTRA_DIST = autogen.sh

# Note: plugindir is set in configure

# src folder

##############################################################################
# TODO: change libgstplugin.la to something else, e.g. libmysomething.la     #
##############################################################################
plugin_LTLIBRARIES = src/libgstdlnasrc.la

##############################################################################
# TODO: for the next set of variables, name the prefix if you named the .la, #
#  e.g. libmysomething.la => libmysomething_la_SOURCES                       #
#                            libmysomething_la_CFLAGS                        #
#                            libmysomething_la_LIBADD                        #
#                            libmysomething_la_LDFLAGS                       #
##############################################################################

# sources used to compile this plug-in
src_libgstdlnasrc_la_SOURCES = src/gstdlnasrc.c src/gstdlnasrc.h 

# compiler and linker flags used to compile this plugin, set in configure.ac
src_libgstdlnasrc_la_CFLAGS = $(GST_CFLAGS) $(SOUP_CFLAGS)
src_libgstdlnasrc_la_CXXFLAGS = $(GST_CFLAGS)
src_libgstdlnasrc_la_LIBADD = $(GST_LIBS) $(SOUP_LIBS)
src_libgstdlnasrc_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
src_libgstdlnasrc_la_LIBTOOLFLAGS = --tag=disable-static

# headers we need but don't want installed
noinst_HEADERS = src/gstdlnasrc.h