examples/Makefile: apply misc minor fixes to the RM rule

Use $(RM) in place of rm, drop useless "-r" for removing files.
This commit is contained in:
Stefano Sabatini 2012-08-27 10:00:03 +02:00
parent c0bca6425d
commit 3b0e2763f4

View File

@ -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)