Browse Source

examples/Makefile: remove duplicated -f switch

$(RM) already includes that flag.

Spotted-by: ubitux
tags/n1.0
Stefano Sabatini 13 years ago
parent
commit
2cbffc6706
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      doc/examples/Makefile

+ 2
- 2
doc/examples/Makefile View File

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

Loading…
Cancel
Save