diff options
author | Clément Bœsch <ubitux@gmail.com> | 2012-05-10 19:09:34 +0200 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2012-05-19 12:28:58 +0200 |
commit | 136ca0e5f86b9aa93e47fa98f3bfe3c3cba376f1 (patch) | |
tree | 915035455ce83348f2cfb022b26d99941b4d636c /doc/examples/Makefile | |
parent | 7aedfeebfb3e699d0bcf2a374d50d732e9567b74 (diff) | |
download | ffmpeg-136ca0e5f86b9aa93e47fa98f3bfe3c3cba376f1.tar.gz |
doc/examples: remove explicit rules.
These rules are already in gmake builtins.
Diffstat (limited to 'doc/examples/Makefile')
-rw-r--r-- | doc/examples/Makefile | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/doc/examples/Makefile b/doc/examples/Makefile index b95e235507..04908c2c7a 100644 --- a/doc/examples/Makefile +++ b/doc/examples/Makefile @@ -24,12 +24,6 @@ OBJS=$(addsuffix .o,$(EXAMPLES)) decoding_encoding: LDLIBS += -lm muxing: LDLIBS += -lm -%: %.o - $(CC) $< $(LDLIBS) -o $@ - -%.o: %.c - $(CC) $< $(CFLAGS) -c -o $@ - .phony: all clean all: $(OBJS) $(EXAMPLES) |