From: Diego Biurrun Date: Sun, 1 Oct 2006 16:33:31 +0000 (+0000) Subject: make depend should recurse into libswscale as well. X-Git-Tag: v0.5~11696 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=eaa6d7b6838f630ec493b656ca9e805a2d6eb422;p=platform%2Fupstream%2Flibav.git make depend should recurse into libswscale as well. Originally committed as revision 6406 to svn://svn.ffmpeg.org/ffmpeg/trunk --- diff --git a/Makefile b/Makefile index 84c0c1a..bc8bd33 100644 --- a/Makefile +++ b/Makefile @@ -208,6 +208,9 @@ depend: .depend ifeq ($(CONFIG_PP),yes) $(MAKE) -C libpostproc depend endif +ifeq ($(CONFIG_SWSCALER),yes) + $(MAKE) -C libswscale depend +endif ifeq ($(BUILD_VHOOK),yes) $(MAKE) -C vhook depend endif