| OLD | NEW |
| 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 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 $(BUILD_PFX)%_mmx.c.d: CFLAGS += -mmmx | 107 $(BUILD_PFX)%_mmx.c.d: CFLAGS += -mmmx |
| 108 $(BUILD_PFX)%_mmx.c.o: CFLAGS += -mmmx | 108 $(BUILD_PFX)%_mmx.c.o: CFLAGS += -mmmx |
| 109 $(BUILD_PFX)%_sse2.c.d: CFLAGS += -msse2 | 109 $(BUILD_PFX)%_sse2.c.d: CFLAGS += -msse2 |
| 110 $(BUILD_PFX)%_sse2.c.o: CFLAGS += -msse2 | 110 $(BUILD_PFX)%_sse2.c.o: CFLAGS += -msse2 |
| 111 $(BUILD_PFX)%_sse3.c.d: CFLAGS += -msse3 | 111 $(BUILD_PFX)%_sse3.c.d: CFLAGS += -msse3 |
| 112 $(BUILD_PFX)%_sse3.c.o: CFLAGS += -msse3 | 112 $(BUILD_PFX)%_sse3.c.o: CFLAGS += -msse3 |
| 113 $(BUILD_PFX)%_ssse3.c.d: CFLAGS += -mssse3 | 113 $(BUILD_PFX)%_ssse3.c.d: CFLAGS += -mssse3 |
| 114 $(BUILD_PFX)%_ssse3.c.o: CFLAGS += -mssse3 | 114 $(BUILD_PFX)%_ssse3.c.o: CFLAGS += -mssse3 |
| 115 $(BUILD_PFX)%_sse4.c.d: CFLAGS += -msse4.1 | 115 $(BUILD_PFX)%_sse4.c.d: CFLAGS += -msse4.1 |
| 116 $(BUILD_PFX)%_sse4.c.o: CFLAGS += -msse4.1 | 116 $(BUILD_PFX)%_sse4.c.o: CFLAGS += -msse4.1 |
| 117 $(BUILD_PFX)%_avx.c.d: CFLAGS += -mavx |
| 118 $(BUILD_PFX)%_avx.c.o: CFLAGS += -mavx |
| 119 $(BUILD_PFX)%_avx2.c.d: CFLAGS += -mavx2 |
| 120 $(BUILD_PFX)%_avx2.c.o: CFLAGS += -mavx2 |
| 117 | 121 |
| 118 $(BUILD_PFX)%.c.d: %.c | 122 $(BUILD_PFX)%.c.d: %.c |
| 119 $(if $(quiet),@echo " [DEP] $@") | 123 $(if $(quiet),@echo " [DEP] $@") |
| 120 $(qexec)mkdir -p $(dir $@) | 124 $(qexec)mkdir -p $(dir $@) |
| 121 $(qexec)$(CC) $(INTERNAL_CFLAGS) $(CFLAGS) -M $< | $(fmt_deps) > $@ | 125 $(qexec)$(CC) $(INTERNAL_CFLAGS) $(CFLAGS) -M $< | $(fmt_deps) > $@ |
| 122 | 126 |
| 123 $(BUILD_PFX)%.c.o: %.c | 127 $(BUILD_PFX)%.c.o: %.c |
| 124 $(if $(quiet),@echo " [CC] $@") | 128 $(if $(quiet),@echo " [CC] $@") |
| 125 $(qexec)$(CC) $(INTERNAL_CFLAGS) $(CFLAGS) -c -o $@ $< | 129 $(qexec)$(CC) $(INTERNAL_CFLAGS) $(CFLAGS) -c -o $@ $< |
| 126 | 130 |
| (...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 411 ifeq ($(CONFIG_EXTERNAL_BUILD),yes) | 415 ifeq ($(CONFIG_EXTERNAL_BUILD),yes) |
| 412 BUILD_TARGETS += .projects | 416 BUILD_TARGETS += .projects |
| 413 INSTALL_TARGETS += .install-projects | 417 INSTALL_TARGETS += .install-projects |
| 414 endif | 418 endif |
| 415 BUILD_TARGETS += .docs .libs .bins | 419 BUILD_TARGETS += .docs .libs .bins |
| 416 INSTALL_TARGETS += .install-docs .install-srcs .install-libs .install-bins | 420 INSTALL_TARGETS += .install-docs .install-srcs .install-libs .install-bins |
| 417 all: $(BUILD_TARGETS) | 421 all: $(BUILD_TARGETS) |
| 418 install:: $(INSTALL_TARGETS) | 422 install:: $(INSTALL_TARGETS) |
| 419 dist: $(INSTALL_TARGETS) | 423 dist: $(INSTALL_TARGETS) |
| 420 test:: | 424 test:: |
| OLD | NEW |