Commit ac977341 authored by Fabrice Bellard's avatar Fabrice Bellard

added release tar target

Originally committed as revision 1364 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent f560dd82
......@@ -119,6 +119,15 @@ TAGS:
libavtest test mpeg4 mpeg: ffmpeg$(EXE)
$(MAKE) -C tests $@
# tar release (use 'make -k tar' on a checkouted tree)
FILE=ffmpeg-$(shell cat VERSION)
tar:
rm -rf /tmp/$(FILE)
cp -r . /tmp/$(FILE)
( cd /tmp ; tar zcvf ~/$(FILE).tar.gz $(FILE) --exclude CVS )
rm -rf /tmp/$(FILE)
ifneq ($(wildcard .depend),)
include .depend
endif
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment