diff --git a/openwrt/toolchain/gdb/Makefile b/openwrt/toolchain/gdb/Makefile
index 63661ca2dcc0b9de2232e9be9772b02c6e23f0e2..34dca715a7f647c034eb18c002d80c15f9a21b4e 100644
--- a/openwrt/toolchain/gdb/Makefile
+++ b/openwrt/toolchain/gdb/Makefile
@@ -40,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))