Merge pull request #409 from mstorsjo/exclude-arm-header

Exclude the arm assembly header as well
This commit is contained in:
Licai Guo 2014-03-05 06:16:51 +08:00
commit 8f981a4282
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 --exclude asm_inc.asm
python build/mktargets.py --directory codec/common --library common --exclude asm_inc.asm --exclude arm_arch_common_macro.S
python build/mktargets.py --directory codec/processing --library processing
python build/mktargets.py --directory codec/console/dec --binary h264dec

View File

@ -24,7 +24,6 @@ endif
ifeq ($(ASM_ARCH), arm)
COMMON_ASM_S_SRCS=\
$(COMMON_SRCDIR)/arm_arch_common_macro.S\
$(COMMON_SRCDIR)/deblocking_neon.S\
COMMON_OBJS += $(COMMON_ASM_S_SRCS:.S=.o)