2004-03-11 18:21:34 +00:00
|
|
|
# we have to put in a little hack here for integration to work well
|
2011-04-19 17:25:54 +00:00
|
|
|
# libav can't be in SUBDIRS, because then automake will try to descend in it
|
2004-03-11 18:21:34 +00:00
|
|
|
# and find conditionals it doesn't know.
|
|
|
|
|
|
|
|
# so,
|
|
|
|
# - don't put it in SUBDIRS so automake doesn't descend
|
|
|
|
# - put it in DIST_SUBDIRS so make dist picks up the subtree
|
|
|
|
# - add an all-local hook so it does get built
|
|
|
|
# this also satisfies make distcheck
|
|
|
|
|
2007-12-17 12:43:06 +00:00
|
|
|
SUBDIRS =
|
2011-04-19 17:25:54 +00:00
|
|
|
DIST_SUBDIRS = libav
|
|
|
|
TMP_DIST_DIR=libav-dist
|
|
|
|
DIST_DIR=$(TMP_DIST_DIR)/.libav
|
2008-05-12 13:02:41 +00:00
|
|
|
EXTRA_DIST=Makefile.am
|
2009-08-19 13:28:35 +00:00
|
|
|
MAINTAINERCLEANDIRS = $(DIST_SUBDIRS)
|
2004-03-11 18:18:36 +00:00
|
|
|
|
|
|
|
all-local:
|
2011-04-19 17:25:54 +00:00
|
|
|
cd libav && $(MAKE)
|
2007-12-17 12:43:06 +00:00
|
|
|
|
|
|
|
clean-local:
|
2011-04-19 17:25:54 +00:00
|
|
|
cd libav && $(MAKE) clean
|
2007-12-17 12:43:06 +00:00
|
|
|
|
|
|
|
dist-clean:
|
2011-04-19 17:25:54 +00:00
|
|
|
cd libav && $(MAKE) distclean
|
2008-05-12 13:02:41 +00:00
|
|
|
rm -rf $(TMP_DIST_DIR)
|
|
|
|
rm -f Makefile
|
2011-04-19 17:25:54 +00:00
|
|
|
rm -f libav/.version
|
|
|
|
rm -f libav/.config
|
2007-12-17 12:43:06 +00:00
|
|
|
|
2008-05-08 16:04:32 +00:00
|
|
|
distclean: dist-clean
|
|
|
|
|
2009-08-19 13:28:35 +00:00
|
|
|
maintainer-clean: distclean
|
|
|
|
rm -rf $(MAINTAINERCLEANDIRS)
|
|
|
|
|
|
|
|
maintainerclean: maintainer-clean
|
|
|
|
|
2008-05-12 13:02:41 +00:00
|
|
|
dist-local:
|
2011-04-19 17:25:54 +00:00
|
|
|
GIT_DIR=libav/.git git checkout-index --prefix=$(TMP_DIST_DIR)/libav/ -a
|
|
|
|
touch $(TMP_DIST_DIR)/libav/config.mak
|
|
|
|
echo "Patching libav ./configure"
|
|
|
|
sed -e '/Unknown option/ {N;N;s/exit 1//; }' $(TMP_DIST_DIR)/libav/configure > $(TMP_DIST_DIR)/libav/configure.tmp
|
|
|
|
mv $(TMP_DIST_DIR)/libav/configure.tmp $(TMP_DIST_DIR)/libav/configure
|
|
|
|
chmod +x $(TMP_DIST_DIR)/libav/configure
|
2007-12-17 12:43:06 +00:00
|
|
|
|
|
|
|
distdir: dist-local
|
2011-04-19 17:25:54 +00:00
|
|
|
cp -r $(TMP_DIST_DIR)/libav ${distdir}
|
2009-02-10 11:34:36 +00:00
|
|
|
cp -f $(top_srcdir)/gst-libs/ext/Makefile.am $(top_srcdir)/gst-libs/ext/Makefile.in ${distdir}
|
2009-01-27 20:10:53 +00:00
|
|
|
rm -rf $(TMP_DIST_DIR)
|
2008-05-08 09:18:45 +00:00
|
|
|
|
2007-12-17 12:43:06 +00:00
|
|
|
dist: dist-local
|
2011-04-19 17:25:54 +00:00
|
|
|
cd $(TMP_DIST_DIR) && tar -czf libav.tar.gz libav
|
|
|
|
mv $(TMP_DIST_DIR)/libav.tar.gz ./
|
2009-01-27 20:10:53 +00:00
|
|
|
rm -rf $(TMP_DIST_DIR)
|