diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2012-08-27 10:00:03 +0200 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2012-08-27 10:09:39 +0200 |
commit | 3b0e2763f42d8a2278d7f96da6ca759f67400341 (patch) | |
tree | d2a86467ae62d821180dcb2988fc77f1de25a53f /doc/examples | |
parent | c0bca6425d6e7e5d9f3094f56a17bad213c639db (diff) | |
download | ffmpeg-3b0e2763f42d8a2278d7f96da6ca759f67400341.tar.gz |
examples/Makefile: apply misc minor fixes to the RM rule
Use $(RM) in place of rm, drop useless "-r" for removing files.
Diffstat (limited to 'doc/examples')
-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 c630b2aa9e..5ef0f7bf1f 100644 --- a/doc/examples/Makefile +++ b/doc/examples/Makefile @@ -28,7 +28,7 @@ muxing: LDLIBS += -lm all: $(OBJS) $(EXAMPLES) clean-test: - rm -rf test*.pgm test.h264 test.mp2 test.sw test.mpg + $(RM) -f test*.pgm test.h264 test.mp2 test.sw test.mpg clean: clean-test - rm -rf $(EXAMPLES) $(OBJS) + $(RM) -f $(EXAMPLES) $(OBJS) |