Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2006-12-07 22:25:04 +0300
committerMåns Rullgård <mans@mansr.com>2006-12-07 22:25:04 +0300
commitda34f7ac236ccf5d25aafac249e3d6dc934bde4c (patch)
tree6c92d33290d35c66d20d321e571cf2415cd52789 /Makefile
parent0dbe81bb9780e541e1b4065dd7a9b1750cdf70c3 (diff)
do not use non-standard test -nt
Originally committed as revision 7252 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 929522c3bf..1bf8ca3432 100644
--- a/Makefile
+++ b/Makefile
@@ -198,9 +198,10 @@ endif
.depend: $(SRCS) version.h
$(CC) -MM $(CFLAGS) $(SDL_CFLAGS) $(filter-out %.h,$^) 1>.depend
-.libs: lib
- @test -f .libs || touch .libs
- @for i in $(DEP_LIBS) ; do if test $$i -nt .libs ; then touch .libs; fi ; done
+$(DEP_LIBS): lib
+
+.libs: $(DEP_LIBS)
+ touch $@
clean:
$(MAKE) -C libavutil clean