Update package version for GStreamer upgrade
[platform/upstream/gst-plugins-tizen.git] / fimcconvert / 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 = libgstfimcconvert.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 libgstfimcconvert_la_SOURCES = \
18         gstfimcconvert.c \
19         fimc_drm_api.c
20
21 # flags used to compile this plugin
22 # add other _CFLAGS and _LIBS as needed
23 libgstfimcconvert_la_CFLAGS = \
24         $(GST_CFLAGS) \
25         $(GST_VIDEO_CFLAGS) \
26         $(DRM_CFLAGS) \
27         $(XFIXES_CFLAGS) \
28         $(DRI2PROTO_CFLAGS) \
29         $(DRI2_CFLAGS) \
30         $(TBM_CFLAGS)
31
32 libgstfimcconvert_la_LIBADD = \
33         $(GST_LIBS) \
34         $(GST_PLUGINS_BASE_LIBS) \
35         $(GST_BASE_LIBS) \
36         $(GST_VIDEO_LIBS) \
37         $(DRM_LIBS) \
38         $(XFIXES_LIBS) \
39         $(DRI2PROTO_LIBS) \
40         $(DRI2_LIBS) \
41         $(TBM_LIBS)
42
43 libgstfimcconvert_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
44
45 # headers we need but don't want installed
46 noinst_HEADERS = gstfimcconvert.h fimc_drm_api.h
47