Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(66)

Side by Side Diff: source/libvpx/build/make/Makefile

Issue 1339513003: libvpx: Pull from upstream (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/libvpx.git@master
Patch Set: Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « source/config/win/x64/vpx_config.asm ('k') | source/libvpx/build/make/configure.sh » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 ## 1 ##
2 ## Copyright (c) 2010 The WebM project authors. All Rights Reserved. 2 ## Copyright (c) 2010 The WebM project authors. All Rights Reserved.
3 ## 3 ##
4 ## Use of this source code is governed by a BSD-style license 4 ## Use of this source code is governed by a BSD-style license
5 ## that can be found in the LICENSE file in the root of the source 5 ## that can be found in the LICENSE file in the root of the source
6 ## tree. An additional intellectual property rights grant can be found 6 ## tree. An additional intellectual property rights grant can be found
7 ## in the file PATENTS. All contributing project authors may 7 ## in the file PATENTS. All contributing project authors may
8 ## be found in the AUTHORS file in the root of the source tree. 8 ## be found in the AUTHORS file in the root of the source tree.
9 ## 9 ##
10 10
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
133 $(BUILD_PFX)%_sse3.c.d: CFLAGS += -msse3 $(STACKREALIGN) 133 $(BUILD_PFX)%_sse3.c.d: CFLAGS += -msse3 $(STACKREALIGN)
134 $(BUILD_PFX)%_sse3.c.o: CFLAGS += -msse3 $(STACKREALIGN) 134 $(BUILD_PFX)%_sse3.c.o: CFLAGS += -msse3 $(STACKREALIGN)
135 $(BUILD_PFX)%_ssse3.c.d: CFLAGS += -mssse3 $(STACKREALIGN) 135 $(BUILD_PFX)%_ssse3.c.d: CFLAGS += -mssse3 $(STACKREALIGN)
136 $(BUILD_PFX)%_ssse3.c.o: CFLAGS += -mssse3 $(STACKREALIGN) 136 $(BUILD_PFX)%_ssse3.c.o: CFLAGS += -mssse3 $(STACKREALIGN)
137 $(BUILD_PFX)%_sse4.c.d: CFLAGS += -msse4.1 $(STACKREALIGN) 137 $(BUILD_PFX)%_sse4.c.d: CFLAGS += -msse4.1 $(STACKREALIGN)
138 $(BUILD_PFX)%_sse4.c.o: CFLAGS += -msse4.1 $(STACKREALIGN) 138 $(BUILD_PFX)%_sse4.c.o: CFLAGS += -msse4.1 $(STACKREALIGN)
139 $(BUILD_PFX)%_avx.c.d: CFLAGS += -mavx $(STACKREALIGN) 139 $(BUILD_PFX)%_avx.c.d: CFLAGS += -mavx $(STACKREALIGN)
140 $(BUILD_PFX)%_avx.c.o: CFLAGS += -mavx $(STACKREALIGN) 140 $(BUILD_PFX)%_avx.c.o: CFLAGS += -mavx $(STACKREALIGN)
141 $(BUILD_PFX)%_avx2.c.d: CFLAGS += -mavx2 $(STACKREALIGN) 141 $(BUILD_PFX)%_avx2.c.d: CFLAGS += -mavx2 $(STACKREALIGN)
142 $(BUILD_PFX)%_avx2.c.o: CFLAGS += -mavx2 $(STACKREALIGN) 142 $(BUILD_PFX)%_avx2.c.o: CFLAGS += -mavx2 $(STACKREALIGN)
143 $(BUILD_PFX)%vp9_reconintra.c.d: CFLAGS += $(STACKREALIGN)
144 $(BUILD_PFX)%vp9_reconintra.c.o: CFLAGS += $(STACKREALIGN)
143 145
144 $(BUILD_PFX)%.c.d: %.c 146 $(BUILD_PFX)%.c.d: %.c
145 $(if $(quiet),@echo " [DEP] $@") 147 $(if $(quiet),@echo " [DEP] $@")
146 $(qexec)mkdir -p $(dir $@) 148 $(qexec)mkdir -p $(dir $@)
147 $(qexec)$(CC) $(INTERNAL_CFLAGS) $(CFLAGS) -M $< | $(fmt_deps) > $@ 149 $(qexec)$(CC) $(INTERNAL_CFLAGS) $(CFLAGS) -M $< | $(fmt_deps) > $@
148 150
149 $(BUILD_PFX)%.c.o: %.c 151 $(BUILD_PFX)%.c.o: %.c
150 $(if $(quiet),@echo " [CC] $@") 152 $(if $(quiet),@echo " [CC] $@")
151 $(qexec)$(if $(CONFIG_DEPENDENCY_TRACKING),,mkdir -p $(dir $@)) 153 $(qexec)$(if $(CONFIG_DEPENDENCY_TRACKING),,mkdir -p $(dir $@))
152 $(qexec)$(CC) $(INTERNAL_CFLAGS) $(CFLAGS) -c -o $@ $< 154 $(qexec)$(CC) $(INTERNAL_CFLAGS) $(CFLAGS) -c -o $@ $<
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
278 $(qexec)mkdir -p $$(dir $$@) 280 $(qexec)mkdir -p $$(dir $$@)
279 $(qexec)cp -p $$< $$@ 281 $(qexec)cp -p $$< $$@
280 endef 282 endef
281 283
282 define archive_template 284 define archive_template
283 # Not using a pattern rule here because we don't want to generate empty 285 # Not using a pattern rule here because we don't want to generate empty
284 # archives when they are listed as a dependency in files not responsible 286 # archives when they are listed as a dependency in files not responsible
285 # for creating them. 287 # for creating them.
286 $(1): 288 $(1):
287 $(if $(quiet),@echo " [AR] $$@") 289 $(if $(quiet),@echo " [AR] $$@")
288 » $(qexec)$$(AR) $$(ARFLAGS) $$@ $$? 290 » $(qexec)$$(AR) $$(ARFLAGS) $$@ $$^
289 endef 291 endef
290 292
291 define so_template 293 define so_template
292 # Not using a pattern rule here because we don't want to generate empty 294 # Not using a pattern rule here because we don't want to generate empty
293 # archives when they are listed as a dependency in files not responsible 295 # archives when they are listed as a dependency in files not responsible
294 # for creating them. 296 # for creating them.
295 # 297 #
296 # This needs further abstraction for dealing with non-GNU linkers. 298 # This needs further abstraction for dealing with non-GNU linkers.
297 $(1): 299 $(1):
298 $(if $(quiet),@echo " [LD] $$@") 300 $(if $(quiet),@echo " [LD] $$@")
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
444 ifeq ($(CONFIG_EXTERNAL_BUILD),yes) 446 ifeq ($(CONFIG_EXTERNAL_BUILD),yes)
445 BUILD_TARGETS += .projects 447 BUILD_TARGETS += .projects
446 INSTALL_TARGETS += .install-projects 448 INSTALL_TARGETS += .install-projects
447 endif 449 endif
448 BUILD_TARGETS += .docs .libs .bins 450 BUILD_TARGETS += .docs .libs .bins
449 INSTALL_TARGETS += .install-docs .install-srcs .install-libs .install-bins 451 INSTALL_TARGETS += .install-docs .install-srcs .install-libs .install-bins
450 all: $(BUILD_TARGETS) 452 all: $(BUILD_TARGETS)
451 install:: $(INSTALL_TARGETS) 453 install:: $(INSTALL_TARGETS)
452 dist: $(INSTALL_TARGETS) 454 dist: $(INSTALL_TARGETS)
453 test:: 455 test::
OLDNEW
« no previous file with comments | « source/config/win/x64/vpx_config.asm ('k') | source/libvpx/build/make/configure.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698