summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2006-10-01 16:33:31 +0000
committerDiego Biurrun <diego@biurrun.de>2006-10-01 16:33:31 +0000
commiteaa6d7b6838f630ec493b656ca9e805a2d6eb422 (patch)
tree8d38078ac5af3dcb2269a1a5f31eeefe5e67f448 /Makefile
parent4054e2452ff3f54a965812459ad76eb7142f823f (diff)
make depend should recurse into libswscale as well.
Originally committed as revision 6406 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 84c0c1acec..bc8bd3370b 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