Bug 450651 Fix theora dependency generation r=ted

This commit is contained in:
Neil Rashbrook 2008-08-20 00:01:29 +01:00
parent 5bacc49dad
commit c591520779

View File

@ -37,7 +37,6 @@
DEPTH = ../../..
topsrcdir = @top_srcdir@
srcdir = @srcdir@
VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
@ -54,37 +53,36 @@ DEFINES += -DOC_X86ASM -DUSE_ASM
endif
endif
VPATH := $(srcdir) $(srcdir)/dec
CSRCS = \
cpu.c \
dec/huffdec.c \
dec/quant.c \
dec/dequant.c \
dec/bitwise.c \
dec/internal.c \
dec/decinfo.c \
dec/decapiwrapper.c \
dec/idct.c \
dec/state.c \
dec/info.c \
dec/fragment.c \
dec/apiwrapper.c \
dec/decode.c \
huffdec.c \
quant.c \
dequant.c \
bitwise.c \
internal.c \
decinfo.c \
decapiwrapper.c \
idct.c \
state.c \
info.c \
fragment.c \
apiwrapper.c \
decode.c \
$(NULL)
ifeq ($(findstring 86,$(OS_TEST)), 86)
VPATH += $(srcdir)/dec/x86
CSRCS += \
dec/x86/mmxfrag.c \
dec/x86/x86state.c \
dec/x86/mmxstate.c \
dec/x86/mmxidct.c \
mmxfrag.c \
x86state.c \
mmxstate.c \
mmxidct.c \
$(NULL)
endif
include $(topsrcdir)/config/rules.mk
LOCAL_INCLUDES = -I$(srcdir)
EXTRA_OBJDIRS = dec dec/x86
export::
mkdir -p $(EXTRA_OBJDIRS)