X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/94266d638908a140ef5cdd9b27d2eb367f97249f..62adcb808c8ff00b33280f3df32c6af41dd1f07f:/toolchain/gdb/Makefile diff --git a/toolchain/gdb/Makefile b/toolchain/gdb/Makefile index 538ef5120..34dca715a 100644 --- a/toolchain/gdb/Makefile +++ b/toolchain/gdb/Makefile @@ -1,3 +1,9 @@ +# +# Copyright (C) 2006 OpenWrt.org +# +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# include $(TOPDIR)/rules.mk PKG_NAME:=gdb @@ -8,7 +14,7 @@ PKG_MD5SUM:=05b928f41fa5b482e49ca2c24762a0ae PKG_SOURCE_URL:=http://ftp.gnu.org/gnu/gdb PKG_CAT:=bzcat -PKG_BUILD_DIR:=$(TOOL_BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) +PKG_BUILD_DIR:=$(TOOLCHAIN_BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) include $(INCLUDE_DIR)/host-build.mk @@ -34,9 +40,16 @@ define Build/Compile endef define Build/Install - install -c $(PKG_BUILD_DIR)/gdb/gdb $(TARGET_CROSS)gdb - cd $(STAGING_DIR)/bin && \ - ln -fs $(TARGET_CROSS)gdb $(GNU_TARGET_NAME)-gdb + (cd $(STAGING_DIR)/bin; \ + install -c $(PKG_BUILD_DIR)/gdb/gdb $(TARGET_CROSS)gdb; \ + ln -fs $(TARGET_CROSS)gdb $(GNU_TARGET_NAME)-gdb; \ + ); +endef + +define Build/Clean + rm -rf $(PKG_BUILD_DIR) + rm -f $(STAGING_DIR)/bin/$(TARGET_CROSS)gdb + rm -f $(STAGING_DIR)/bin/$(GNU_TARGET_NAME)-gdb endef $(eval $(call HostBuild))