mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 07:47:17 +00:00
gst-libs/ext/Makefile.am: More fixes for make dist
Original commit message from CVS: * gst-libs/ext/Makefile.am: More fixes for make dist
This commit is contained in:
parent
4de29a49a1
commit
de31a237d1
3 changed files with 13 additions and 4 deletions
|
@ -1,3 +1,8 @@
|
|||
2008-05-12 Edward Hervey <edward.hervey@collabora.co.uk>
|
||||
|
||||
* gst-libs/ext/Makefile.am:
|
||||
More fixes for make dist
|
||||
|
||||
2008-05-08 Edward Hervey <edward.hervey@collabora.co.uk>
|
||||
|
||||
* ffmpegrev:
|
||||
|
|
2
common
2
common
|
@ -1 +1 @@
|
|||
Subproject commit ba3dd2882b1611f8115f9664e3b85e1fd956b53d
|
||||
Subproject commit 2d9c09df0fe4ad3f570fea9f649cfc6c4511080d
|
|
@ -12,6 +12,7 @@ SUBDIRS =
|
|||
DIST_SUBDIRS = ffmpeg
|
||||
TMP_DIST_DIR=ffmpeg-dist
|
||||
DIST_DIR=$(TMP_DIST_DIR)/.ffmpeg/
|
||||
EXTRA_DIST=Makefile.am
|
||||
|
||||
all-local:
|
||||
cd ffmpeg && $(MAKE)
|
||||
|
@ -20,11 +21,13 @@ clean-local:
|
|||
cd ffmpeg && $(MAKE) clean
|
||||
|
||||
dist-clean:
|
||||
rm -rf $(TMP_DIST_DIR)
|
||||
rm -rf $(TMP_DIST_DIR)
|
||||
rm -rf ffmpeg/
|
||||
rm -f Makefile
|
||||
|
||||
distclean: dist-clean
|
||||
|
||||
dist-local: dist-clean
|
||||
dist-local:
|
||||
svn -r $(FFMPEG_REVISION) co $(FFMPEG_SVN) $(TMP_DIST_DIR)
|
||||
mkdir $(DIST_DIR)
|
||||
pwd
|
||||
|
@ -51,7 +54,8 @@ dist-local: dist-clean
|
|||
rm -rf $(TMP_DIST_DIR)
|
||||
|
||||
distdir: dist-local
|
||||
cp -r ffmpeg Makefile* ${distdir}
|
||||
cp -r ffmpeg ${distdir}
|
||||
cp -f Makefile.am Makefile.in ${distdir}
|
||||
|
||||
dist: dist-local
|
||||
tar -czf ffmpeg.tar.gz ffmpeg
|
||||
|
|
Loading…
Reference in a new issue