shithub: openh264

Download patch

ref: e61bd1b5048b183963ca5cb38c9ce035deb5a559
parent: bc9ee5b145a0a50b8d9c66073478eda424244f6d
parent: 773cc4a79779e2fb6605c914a46578732c739ed3
author: volvet <qizh@cisco.com>
date: Tue Mar 4 16:07:42 EST 2014

Merge pull request #408 from mstorsjo/exclude-asm-headers

Exclude assembly files that are used as headers

--- a/build/mktargets.sh
+++ b/build/mktargets.sh
@@ -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
--- a/codec/common/targets.mk
+++ b/codec/common/targets.mk
@@ -10,7 +10,6 @@
 
 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\