diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2012-08-28 20:06:45 +0200 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2012-08-28 20:09:42 +0200 |
commit | 2cbffc670684af98b758da0777c049c2b27c3279 (patch) | |
tree | a38635d57e1a72ae26f796d1df99c0dcdb941992 | |
parent | 74419fcf45359a9afc5a26b340ffb41d0edb746c (diff) | |
download | ffmpeg-2cbffc670684af98b758da0777c049c2b27c3279.tar.gz |
examples/Makefile: remove duplicated -f switch
$(RM) already includes that flag.
Spotted-by: ubitux
-rw-r--r-- | doc/examples/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/examples/Makefile b/doc/examples/Makefile index 94db3836ac..20dd5e146a 100644 --- a/doc/examples/Makefile +++ b/doc/examples/Makefile @@ -29,7 +29,7 @@ muxing: LDLIBS += -lm all: $(OBJS) $(EXAMPLES) clean-test: - $(RM) -f test*.pgm test.h264 test.mp2 test.sw test.mpg outscale*.pgm + $(RM) test*.pgm test.h264 test.mp2 test.sw test.mpg outscale*.pgm clean: clean-test - $(RM) -f $(EXAMPLES) $(OBJS) + $(RM) $(EXAMPLES) $(OBJS) |