gstreamer/debian.upstream/Makefile.am
Víctor Manuel Jáquez Leal ef7dc4eaf6 build: fix make distcheck
This patch fixes several issues found when running the `make distcheck`
target:

- In commit c561b8da, the update of gstcompat.h in Makefile.am was
  forgotten.
- In commit c5756a91 add the simple_encoder_source_h in EXTRA_DIST was
  forgotten.
- vpx.build.stamp is not generated at all, only vpx.configure.stamp.
- The make target distcleancheck failed because some autogenerated files
  were not handled with the DISTCLEANFILES variable.

Note: `make distcheck -jXX` is not currently supported.
2015-05-13 15:21:07 +02:00

43 lines
1.1 KiB
Makefile

DOCS = \
AUTHORS \
COPYING.LIB \
NEWS \
README \
$(NULL)
DEBIANFILES = \
changelog.in \
compat \
control.in \
copyright \
gstreamer-vaapi-doc.install.in \
gstreamer-vaapi.install.in \
libgstvaapi-dev.install.in \
libgstvaapi-drm.install.in \
libgstvaapi-glx.install.in \
libgstvaapi-wayland.install.in \
libgstvaapi-x11.install.in \
libgstvaapi.install.in \
rules \
$(NULL)
DEBIANGENFILES = \
changelog \
control \
gstreamer$(GST_API_VERSION)-vaapi-doc.install \
gstreamer$(GST_API_VERSION)-vaapi.install \
libgstvaapi$(GST_PKG_VERSION)-dev.install \
libgstvaapi$(GST_VAAPI_MAJOR_VERSION).install \
libgstvaapi-drm-$(GST_VAAPI_MAJOR_VERSION).install \
libgstvaapi-glx-$(GST_VAAPI_MAJOR_VERSION).install \
libgstvaapi-wayland-$(GST_VAAPI_MAJOR_VERSION).install \
libgstvaapi-x11-$(GST_VAAPI_MAJOR_VERSION).install \
$(NULL)
EXTRA_DIST = $(DEBIANFILES)
dist_noinst_DATA = $(DEBIANGENFILES)
DISTCLEANFILES = $(DEBIANGENFILES)
# Extra clean files so that maintainer-clean removes *everything*
MAINTAINERCLEANFILES = Makefile.in $(DEBIANGENFILES)