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

Use $(RM) in place of rm, drop useless "-r" for removing files.
pull/28/head
Stefano Sabatini 12 years ago
parent c0bca6425d
commit 3b0e2763f4
  1. 4
      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)

Loading…
Cancel
Save