summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorMans Rullgard <mans@mansr.com>2012-08-01 14:32:19 +0100
committerMans Rullgard <mans@mansr.com>2012-08-02 12:14:52 +0100
commitaf500c08bbb054902f9326006011777bb3a98fb4 (patch)
tree184fb4380e31e0be291395bfabb08c56aa4dbb57 /libavcodec
parentcf5781fad0e67c6e49abc9b84390c0ca9485873e (diff)
dct-test: always link with aandcttab.o
This allows building dct-test even if aandcttab.o is not pulled in by any enabled codec. The DCT with which these tables are used does not use them directly, so building it without the tables is possible. Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/Makefile b/libavcodec/Makefile
index 17bc364e6b..4a4364dd1b 100644
--- a/libavcodec/Makefile
+++ b/libavcodec/Makefile
@@ -748,7 +748,7 @@ HOSTPROGS = aac_tablegen \
CLEANFILES = *_tables.c *_tables.h *_tablegen$(HOSTEXESUF)
-$(SUBDIR)dct-test$(EXESUF): $(SUBDIR)dctref.o
+$(SUBDIR)dct-test$(EXESUF): $(SUBDIR)dctref.o $(SUBDIR)aandcttab.o
TRIG_TABLES = cos cos_fixed sin
TRIG_TABLES := $(TRIG_TABLES:%=$(SUBDIR)%_tables.c)