diff options
author | Zdenek Kabelac <kabi@informatics.muni.cz> | 2003-03-13 15:36:53 +0000 |
---|---|---|
committer | Zdenek Kabelac <kabi@informatics.muni.cz> | 2003-03-13 15:36:53 +0000 |
commit | 127d5c8d43da21872f736a07226f5c9f4573b6db (patch) | |
tree | ca3cc1bdc08d491522d91816151d272b8f8be67e | |
parent | d1db8623784d3ed6385133aa6f34ab5e24d82212 (diff) | |
download | ffmpeg-127d5c8d43da21872f736a07226f5c9f4573b6db.tar.gz |
* don't rebuild ffmpeg when libs were not modified
Originally committed as revision 1681 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -111,7 +111,8 @@ endif $(CC) -MM $(CFLAGS) $^ 1>.depend .libs: lib - touch .libs + @test -f .libs || touch .libs + @for i in $(DEP_LIBS) ; do if test $$i -nt .libs ; then touch .libs; fi ; done clean: $(CLEANVHOOK) $(MAKE) -C libavcodec clean |