diff options
author | Luca Barbato <lu_zero@gentoo.org> | 2011-07-30 11:01:17 +0200 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2011-07-30 13:42:44 +0200 |
commit | 8a54bfe83f3387072fb2044096d073c973739ed1 (patch) | |
tree | c47d4aaad7937d6fc506cbfca3701caae1220952 | |
parent | 1f6f58d5855288492fc2640a9f1035c01c75d356 (diff) | |
download | ffmpeg-8a54bfe83f3387072fb2044096d073c973739ed1.tar.gz |
build: make examples build normally
The link target was missing $(EXAMPLES)
-rw-r--r-- | subdir.mak | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/subdir.mak b/subdir.mak index e6d52953b5..e269b509ce 100644 --- a/subdir.mak +++ b/subdir.mak @@ -34,7 +34,7 @@ install-libs-$(CONFIG_STATIC): install-lib$(NAME)-static install-libs-$(CONFIG_SHARED): install-lib$(NAME)-shared define RULES -$(TESTPROGS) $(TOOLS): %$(EXESUF): %.o +$(EXAMPLES) $(TESTPROGS) $(TOOLS): %$(EXESUF): %.o $$(LD) $(LDFLAGS) -o $$@ $$^ -l$(FULLNAME) $(FFEXTRALIBS) $$(ELIBS) $(SUBDIR)$(SLIBNAME): $(SUBDIR)$(SLIBNAME_WITH_MAJOR) |