diff options
author | Felix Fietkau <nbd@openwrt.org> | 2014-03-13 14:13:57 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2014-03-13 14:13:57 +0000 |
commit | 8c9fed34e409455061ac6ddef1aa6e8ef340566e (patch) | |
tree | 0601249519612259b8fcc7b8e07f890ba1a6e4a6 | |
parent | ee4110aff031d53efe4fcc63e32cf218f455a7e9 (diff) | |
download | upstream-8c9fed34e409455061ac6ddef1aa6e8ef340566e.tar.gz upstream-8c9fed34e409455061ac6ddef1aa6e8ef340566e.tar.bz2 upstream-8c9fed34e409455061ac6ddef1aa6e8ef340566e.zip |
target/sdk: leave out some unnecessary directories
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39914
-rw-r--r-- | target/sdk/Makefile | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/target/sdk/Makefile b/target/sdk/Makefile index 376aef8eb0..14cb8d0644 100644 --- a/target/sdk/Makefile +++ b/target/sdk/Makefile @@ -16,15 +16,25 @@ PKG_CPU:=$(word 1,$(subst -, ,$(shell $(HOSTCC) -dumpmachine))) SDK_NAME:=OpenWrt-SDK-$(BOARD)-for-$(PKG_OS)-$(PKG_CPU)-gcc-$(GCCV)_$(LIBC)-$(LIBCV) SDK_BUILD_DIR:=$(BUILD_DIR)/$(SDK_NAME) + +STAGING_SUBDIR_TARGET := staging_dir/target-$(ARCH)$(ARCH_SUFFIX)_$(LIBC)-$(LIBCV)$(if $(CONFIG_arm),_eabi) + EXCLUDE_DIRS:=*/ccache \ */stamp \ */stampfiles \ */man \ */info \ + */root-* \ + initial \ + *.install.clean \ + *.install.flags \ + *.install \ + */doc \ + $(STAGING_SUBDIR_TARGET)/usr/bin SDK_DIRS = \ staging_dir/host \ - staging_dir/target-$(ARCH)$(ARCH_SUFFIX)_$(LIBC)-$(LIBCV)$(if $(CONFIG_arm),_eabi) \ + $(STAGING_SUBDIR_TARGET) \ staging_dir/toolchain-$(ARCH)$(ARCH_SUFFIX)_gcc-$(GCCV)_$(LIBC)-$(LIBCV)$(if $(CONFIG_arm),_eabi) \ SVN_PACKAGE_URL=$(shell svn info ../../package | awk '/^URL:/ { print $$2; }') |