Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClément Bœsch <ubitux@gmail.com>2012-05-10 21:09:34 +0400
committerClément Bœsch <ubitux@gmail.com>2012-05-19 14:28:58 +0400
commit136ca0e5f86b9aa93e47fa98f3bfe3c3cba376f1 (patch)
tree915035455ce83348f2cfb022b26d99941b4d636c /doc/examples/Makefile
parent7aedfeebfb3e699d0bcf2a374d50d732e9567b74 (diff)
doc/examples: remove explicit rules.
These rules are already in gmake builtins.
Diffstat (limited to 'doc/examples/Makefile')
-rw-r--r--doc/examples/Makefile6
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)