X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=Makefile;h=931c8bcc01794d6dd89b0da095a4f1bb28043fd6;hb=b568900f35cef12a8440a6a449474b00c1206a79;hp=b7738dda7186816fa89a6641a9c95dbc3bca687f;hpb=7db9c11e03d62fd10d206e01b708d8d761c413bb;p=open-ath9k-htc-firmware.git diff --git a/Makefile b/Makefile index b7738dd..931c8bc 100644 --- a/Makefile +++ b/Makefile @@ -1,26 +1,26 @@ GMP_VER=5.0.5 -GMP_URL=http://ftp.gnu.org/gnu/gmp/gmp-$(GMP_VER).tar.bz2 +GMP_URL=https://ftp.gnu.org/gnu/gmp/gmp-$(GMP_VER).tar.bz2 GMP_TAR=gmp-$(GMP_VER).tar.bz2 GMP_DIR=gmp-$(GMP_VER) MPFR_VER=3.1.1 -MPFR_URL=http://ftp.gnu.org/gnu/mpfr/mpfr-$(MPFR_VER).tar.bz2 +MPFR_URL=https://ftp.gnu.org/gnu/mpfr/mpfr-$(MPFR_VER).tar.bz2 MPFR_TAR=mpfr-$(MPFR_VER).tar.bz2 MPFR_DIR=mpfr-$(MPFR_VER) MPC_VER=1.0.1 -MPC_URL=http://ftp.gnu.org/gnu/mpc/mpc-$(MPC_VER).tar.gz +MPC_URL=https://ftp.gnu.org/gnu/mpc/mpc-$(MPC_VER).tar.gz MPC_TAR=mpc-$(MPC_VER).tar.gz MPC_DIR=mpc-$(MPC_VER) BINUTILS_VER=2.23.1 -BINUTILS_URL=http://ftp.gnu.org/gnu/binutils/binutils-$(BINUTILS_VER).tar.bz2 +BINUTILS_URL=https://ftp.gnu.org/gnu/binutils/binutils-$(BINUTILS_VER).tar.bz2 BINUTILS_TAR=binutils-$(BINUTILS_VER).tar.bz2 BINUTILS_DIR=binutils-$(BINUTILS_VER) -BINUTILS_PATCHES=local/patches/binutils.patch +BINUTILS_PATCHES=local/patches/binutils.patch local/patches/binutils-elf32-xtensa-sec_cache.patch -GCC_VER=4.7.2 -GCC_URL=http://ftp.gnu.org/gnu/gcc/gcc-$(GCC_VER)/gcc-$(GCC_VER).tar.bz2 +GCC_VER=4.7.4 +GCC_URL=https://ftp.gnu.org/gnu/gcc/gcc-$(GCC_VER)/gcc-$(GCC_VER).tar.bz2 GCC_TAR=gcc-$(GCC_VER).tar.bz2 GCC_DIR=gcc-$(GCC_VER) GCC_PATCHES=local/patches/gcc.patch @@ -71,7 +71,8 @@ endef define BINUTILS/Compile $(call Common/Compile,BINUTILS, \ - --target=$(TARGET), \ + --target=$(TARGET) \ + --disable-werror, \ $(MAKE) && $(MAKE) -j1 install \ ) endef @@ -99,7 +100,7 @@ $(DL_DIR)/$($(1)_TAR): wget -N -P $(DL_DIR) $($(1)_URL) $(DL_DIR)/$($(1)_DIR)/.prepared: $(DL_DIR)/$($(1)_TAR) - tar -C $(DL_DIR) -x$(if $(findstring bzip2,$($(1)_TAR)),j,z)f $(DL_DIR)/$($(1)_TAR) + tar -C $(DL_DIR) -x$(if $(findstring bz2,$($(1)_TAR)),j,z)f $(DL_DIR)/$($(1)_TAR) $(if $($(1)_PATCHES), \ cat $($(1)_PATCHES) | \ patch -p1 -d $(DL_DIR)/$($(1)_DIR)) @@ -120,14 +121,20 @@ download: $(DL_DIR)/$($(1)_DIR)/.prepared endef -all: toolchain -clean: +all: toolchain firmware +toolchain-clean: rm -rf $(TOOLCHAIN_DIR)/build $(TOOLCHAIN_DIR)/inst clean-dl: download: toolchain: -.PHONY: all clean clean-dl download toolchain +clean: + $(MAKE) -C target_firmware clean + +firmware: toolchain + +$(MAKE) -C target_firmware + +.PHONY: all toolchain-clean clean clean-dl download toolchain firmware $(eval $(call Build,GMP)) $(eval $(call Build,MPFR,GMP))