tizen 2.3.1 release
[framework/multimedia/gst-plugins-ext0.10.git] / drmsrc / src / Makefile.am
1 # plugindir is set in configure
2
3 ##############################################################################
4 # change libgstplugin.la to something more suitable, e.g. libmysomething.la  #
5 ##############################################################################
6 plugin_LTLIBRARIES = libgstdrmsrc.la
7
8 ##############################################################################
9 # for the next set of variables, rename the prefix if you renamed the .la,   #
10 #  e.g. libgstplugin_la_SOURCES => libmysomething_la_SOURCES                 #
11 #       libgstplugin_la_CFLAGS  => libmysomething_la_CFLAGS                  #
12 #       libgstplugin_la_LIBADD  => libmysomething_la_LIBADD                  #
13 #       libgstplugin_la_LDFLAGS => libmysomething_la_LDFLAGS                 #
14 ##############################################################################
15
16 # sources used to compile this plug-in
17 libgstdrmsrc_la_SOURCES = gstdrmsrc.c drm_util.c
18
19 # flags used to compile this plugin
20 # add other _CFLAGS and _LIBS as needed
21 libgstdrmsrc_la_CFLAGS = $(GST_CFLAGS) $(DRM_CLIENT_CFLAGS) $(DRM_TRUSTED_CFLAGS) -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64
22 libgstdrmsrc_la_LIBADD = $(GST_LIBS) $(DRM_CLIENT_LIBS) $(DRM_TRUSTED_LIBS) $(GST_BASE_LIBS) 
23 libgstdrmsrc_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
24
25 # headers we need but don't want installed
26 noinst_HEADERS = gstdrmsrc.h drm_util.h
27