Exclude assembly files that are used as headers

This avoids some warnings about object files not containing any
symbols.
This commit is contained in:
Martin Storsjö 2014-03-04 14:54:33 +02:00
parent 73cc5862ba
commit 773cc4a797
2 changed files with 1 additions and 2 deletions

View File

@ -1,7 +1,7 @@
#!/bin/sh
python build/mktargets.py --directory codec/decoder --library decoder
python build/mktargets.py --directory codec/encoder --library encoder --exclude DllEntry.cpp
python build/mktargets.py --directory codec/common --library common
python build/mktargets.py --directory codec/common --library common --exclude asm_inc.asm
python build/mktargets.py --directory codec/processing --library processing
python build/mktargets.py --directory codec/console/dec --binary h264dec

View File

@ -10,7 +10,6 @@ COMMON_OBJS += $(COMMON_CPP_SRCS:.cpp=.o)
ifeq ($(ASM_ARCH), x86)
COMMON_ASM_SRCS=\
$(COMMON_SRCDIR)/asm_inc.asm\
$(COMMON_SRCDIR)/cpuid.asm\
$(COMMON_SRCDIR)/deblock.asm\
$(COMMON_SRCDIR)/expand_picture.asm\