From 0c3b2d65861da7048f7f970dbf3be36db8fc1b0b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A5ns=20Rullg=C3=A5rd?= Date: Mon, 15 Jun 2009 22:12:23 +0000 Subject: [PATCH] Add "config" make target to rerun configure with old options Originally committed as revision 19202 to svn://svn.ffmpeg.org/ffmpeg/trunk --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 2f3a8f1ec6..9ac1318af0 100644 --- a/Makefile +++ b/Makefile @@ -129,6 +129,9 @@ distclean:: rm -f $(DISTCLEANSUFFIXES) rm -f version.h config.* +config: + $(SRC_PATH)/configure $(value FFMPEG_CONFIGURATION) + # regression tests check: test checkheaders @@ -305,4 +308,4 @@ tests/seek_test$(EXESUF): tests/seek_test.c $(FF_DEP_LIBS) $(CC) $(FF_LDFLAGS) $(CFLAGS) -o $@ $< $(FF_EXTRALIBS) -.PHONY: documentation *test regtest-* zlib-error alltools check +.PHONY: documentation *test regtest-* zlib-error alltools check config