mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 03:19:40 +00:00
89e41fc8e3
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
47 lines
812 B
Makefile
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
|