Commit 23d90014 authored by mru's avatar mru

do not use non-standard test -nt


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@7252 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 31d74170
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment