mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 18:39:54 +00:00
7eef852bdb
Signed-off-by: Gwenole Beauchesne <gwenole.beauchesne@intel.com>
25 lines
692 B
Makefile
25 lines
692 B
Makefile
ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
|
|
|
|
AUTOMAKE_OPTIONS = foreign
|
|
|
|
SUBDIRS = debian.upstream gst-libs gst pkgconfig tests docs
|
|
|
|
# Extra clean files so that maintainer-clean removes *everything*
|
|
MAINTAINERCLEANFILES = \
|
|
aclocal.m4 compile config.guess config.sub \
|
|
configure depcomp install-sh ltmain.sh \
|
|
Makefile.in missing config.h.in gtk-doc.make
|
|
|
|
DEB_BUILDDIR = debian.build
|
|
|
|
deb:
|
|
dpkg-buildpackage -rfakeroot -uc -us
|
|
|
|
deb.upstream: dist
|
|
-mkdir -p $(DEB_BUILDDIR)
|
|
cd $(DEB_BUILDDIR) && \
|
|
rm -rf $(PACKAGE)-$(VERSION) && \
|
|
tar zxvf ../$(PACKAGE)-$(VERSION).tar.gz && \
|
|
cd $(PACKAGE)-$(VERSION) && \
|
|
$(LN_S) debian.upstream debian && \
|
|
$(MAKE) deb -f Makefile.am
|