| Index: libvpx/source/libvpx/build/make/Makefile
|
| diff --git a/libvpx/source/libvpx/build/make/Makefile b/libvpx/source/libvpx/build/make/Makefile
|
| index ff40ddbec2ccbd5707bf151f67b90b940d27abb2..64d3c934b9018a769d30c00bc530f0200ff4f64b 100644
|
| --- a/libvpx/source/libvpx/build/make/Makefile
|
| +++ b/libvpx/source/libvpx/build/make/Makefile
|
| @@ -98,11 +98,11 @@ install::
|
| $(BUILD_PFX)%.c.d: %.c
|
| $(if $(quiet),@echo " [DEP] $@")
|
| $(qexec)mkdir -p $(dir $@)
|
| - $(qexec)$(CC) $(INTERNAL_CFLAGS) $(CFLAGS) -M $< | $(fmt_deps) > $@
|
| + $(qexec)$(CC) $(CFLAGS) -M $< | $(fmt_deps) > $@
|
|
|
| $(BUILD_PFX)%.c.o: %.c
|
| $(if $(quiet),@echo " [CC] $@")
|
| - $(qexec)$(CC) $(INTERNAL_CFLAGS) $(CFLAGS) -c -o $@ $<
|
| + $(qexec)$(CC) $(CFLAGS) -c -o $@ $<
|
|
|
| $(BUILD_PFX)%.asm.d: %.asm
|
| $(if $(quiet),@echo " [DEP] $@")
|
| @@ -124,12 +124,6 @@ $(BUILD_PFX)%.s.o: %.s
|
| $(if $(quiet),@echo " [AS] $@")
|
| $(qexec)$(AS) $(ASFLAGS) -o $@ $<
|
|
|
| -.PRECIOUS: %.c.S
|
| -%.c.S: CFLAGS += -DINLINE_ASM
|
| -$(BUILD_PFX)%.c.S: %.c
|
| - $(if $(quiet),@echo " [GEN] $@")
|
| - $(qexec)$(CC) -S $(CFLAGS) -o $@ $<
|
| -
|
| .PRECIOUS: %.asm.s
|
| $(BUILD_PFX)%.asm.s: %.asm
|
| $(if $(quiet),@echo " [ASM CONVERSION] $@")
|
| @@ -194,7 +188,7 @@ define linker_template
|
| $(1): $(filter-out -%,$(2))
|
| $(1):
|
| $(if $(quiet),@echo " [LD] $$@")
|
| - $(qexec)$$(LD) $$(strip $$(INTERNAL_LDFLAGS) $$(LDFLAGS) -o $$@ $(2) $(3) $$(extralibs))
|
| + $(qexec)$$(LD) $$(strip $$(LDFLAGS) -o $$@ $(2) $(3) $$(extralibs))
|
| endef
|
| # make-3.80 has a bug with expanding large input strings to the eval function,
|
| # which was triggered in some cases by the following component of
|
| @@ -336,7 +330,6 @@ ifneq ($(call enabled,DIST-SRCS),)
|
| DIST-SRCS-$(CONFIG_MSVS) += build/make/gen_msvs_proj.sh
|
| DIST-SRCS-$(CONFIG_MSVS) += build/make/gen_msvs_sln.sh
|
| DIST-SRCS-$(CONFIG_MSVS) += build/x86-msvs/yasm.rules
|
| - DIST-SRCS-$(CONFIG_MSVS) += build/x86-msvs/obj_int_extract.bat
|
| DIST-SRCS-$(CONFIG_RVCT) += build/make/armlink_adapter.sh
|
| # Include obj_int_extract if we use offsets from asm_*_offsets
|
| DIST-SRCS-$(ARCH_ARM)$(ARCH_X86)$(ARCH_X86_64) += build/make/obj_int_extract.c
|
|
|