summaryrefslogtreecommitdiff
path: root/vp8/vp8cx.mk
diff options
context:
space:
mode:
authorJohn Koleszar <jkoleszar@google.com>2012-10-31 13:13:19 -0700
committerJohn Koleszar <jkoleszar@google.com>2012-11-15 10:44:58 -0800
commitb72373de79800e801ce730d24cb115daf78ae660 (patch)
treed9e1783309ead5990b8d80ab552db95dcf7b571a /vp8/vp8cx.mk
parent6becad426cddf8d98c35172eeac8bcc3282e27ec (diff)
downloadlibvpx-b72373de79800e801ce730d24cb115daf78ae660.tar.gz
make: flatten object file directories
Rather than building an object file directory heirarchy matching the source tree's layout, rename the object files so that the object file name contains the path in the source file tree. The intent here is to allow two files in different parts of the source tree to have the same name and still not collide when put into an ar archive. Change-Id: Id627737dc95ffc65b738501215f34a995148c5a2
Diffstat (limited to 'vp8/vp8cx.mk')
-rw-r--r--vp8/vp8cx.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/vp8/vp8cx.mk b/vp8/vp8cx.mk
index 4ff3ef2c0..6d0992144 100644
--- a/vp8/vp8cx.mk
+++ b/vp8/vp8cx.mk
@@ -101,7 +101,7 @@ VP8_CX_SRCS-$(HAVE_SSE2) += encoder/x86/quantize_sse2.asm
ifeq ($(CONFIG_TEMPORAL_DENOISING),yes)
VP8_CX_SRCS-$(HAVE_SSE2) += encoder/x86/denoising_sse2.c
ifeq ($(HAVE_SSE2),yes)
-vp8/encoder/x86/denoising_sse2.c.o: CFLAGS += -msse2
+$(call xform_obj_path_o_d,vp8/encoder/x86/denoising_sse2.c): CFLAGS += -msse2
endif
endif