mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 11:29:55 +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
32 lines
770 B
Makefile
32 lines
770 B
Makefile
pcfiles_in = gstreamer-vaapi.pc.in
|
|
if USE_DRM
|
|
pcfiles_in += gstreamer-vaapi-drm.pc.in
|
|
endif
|
|
if USE_X11
|
|
pcfiles_in += gstreamer-vaapi-x11.pc.in
|
|
endif
|
|
if USE_GLX
|
|
pcfiles_in += gstreamer-vaapi-glx.pc.in
|
|
endif
|
|
if USE_WAYLAND
|
|
pcfiles_in += gstreamer-vaapi-wayland.pc.in
|
|
endif
|
|
|
|
pcfiles = $(pcfiles_in:%.pc.in=%-$(GST_PKG_VERSION).pc)
|
|
|
|
all_pcfiles_in = gstreamer-vaapi.pc.in
|
|
all_pcfiles_in += gstreamer-vaapi-drm.pc.in
|
|
all_pcfiles_in += gstreamer-vaapi-x11.pc.in
|
|
all_pcfiles_in += gstreamer-vaapi-glx.pc.in
|
|
all_pcfiles_in += gstreamer-vaapi-wayland.pc.in
|
|
|
|
all_pcfiles = $(all_pcfiles_in:%.pc.in=%-$(GST_PKG_VERSION).pc)
|
|
|
|
pkgconfigdir = @pkgconfigdir@
|
|
pkgconfig_DATA = $(pcfiles)
|
|
|
|
EXTRA_DIST = $(all_pcfiles_in)
|
|
|
|
DISTCLEANFILES = $(all_pcfiles)
|
|
|
|
-include $(top_srcdir)/git.mk
|