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
29 lines
806 B
Makefile
29 lines
806 B
Makefile
ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
|
|
|
|
AUTOMAKE_OPTIONS = foreign
|
|
|
|
SUBDIRS = debian.upstream ext gst-libs gst pkgconfig tests docs patches
|
|
|
|
# Extra clean files so that maintainer-clean removes *everything*
|
|
MAINTAINERCLEANFILES = \
|
|
$(GITIGNORE_MAINTAINERCLEANFILES_TOPLEVEL) \
|
|
$(GITIGNORE_MAINTAINERCLEANFILES_MAKEFILE_IN) \
|
|
$(GITIGNORE_MAINTAINERCLEANFILES_M4_LIBTOOL) \
|
|
$(srcdir)/gtk-doc.make $(srcdir)/m4/gtk-doc.m4 \
|
|
$(NULL)
|
|
|
|
DEB_BUILDDIR = debian.build
|
|
|
|
deb:
|
|
dpkg-buildpackage -rfakeroot -uc -us
|
|
|
|
deb.upstream: dist-bzip2
|
|
-mkdir -p $(DEB_BUILDDIR)
|
|
cd $(DEB_BUILDDIR) && \
|
|
rm -rf $(PACKAGE)-$(VERSION) && \
|
|
tar jxvf ../$(PACKAGE)-$(VERSION).tar.bz2 && \
|
|
cd $(PACKAGE)-$(VERSION) && \
|
|
$(LN_S) debian.upstream debian && \
|
|
$(MAKE) deb -f Makefile.am
|
|
|
|
-include $(top_srcdir)/git.mk
|