gstreamer/gst-libs/gst/base/Makefile.am
Víctor Manuel Jáquez Leal 89e41fc8e3 build: use git.mk
This patch handles dinamically the gitignore files with git.mk[1].

Removed the automake variable MAINTAINERCLANFILES in most of the
Makefile.am files since now it is handled by the top one.

1. https://github.com/behdad/git.mk/blob/master/git.mk

https://bugzilla.gnome.org/show_bug.cgi?id=749321
2015-05-18 16:14:46 +02:00

47 lines
812 B
Makefile

noinst_LTLIBRARIES = \
libgstvaapi-baseutils.la \
$(NULL)
source_c = \
gstbitwriter.c \
$(NULL)
source_h = \
gstbitwriter.h \
$(NULL)
libgstvaapi_baseutils_cflags = \
-DGST_USE_UNSTABLE_API \
-I$(top_srcdir)/gst-libs \
-I$(top_builddir)/gst-libs \
$(GST_BASE_CFLAGS) \
$(GST_CFLAGS) \
$(NULL)
libgstvaapi_baseutils_libs = \
$(GST_BASE_LIBS) \
$(GST_LIBS) \
$(NULL)
nodist_libgstvaapi_baseutils_la_SOURCES = \
$(source_c) \
$(NULL)
libgstvaapi_baseutils_la_CFLAGS = \
$(libgstvaapi_baseutils_cflags) \
$(NULL)
libgstvaapi_baseutils_la_LIBADD = \
$(libgstvaapi_baseutils_libs) \
$(NULL)
libgstvaapi_baseutils_la_LDFLAGS = \
$(GST_ALL_LDFLAGS) \
$(NULL)
EXTRA_DIST = \
$(source_c) \
$(source_h) \
$(NULL)
-include $(top_srcdir)/git.mk