summaryrefslogtreecommitdiff
path: root/tools/sstrip
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2009-02-22 04:37:20 +0000
committerFelix Fietkau <nbd@openwrt.org>2009-02-22 04:37:20 +0000
commit7eb15898755be46e94078faffdacd8c9b0ce66cd (patch)
tree89dc171f7b7c646be5a38ca7d7b99e1be24fa61f /tools/sstrip
parent6ccc1c8e3c9ad0ac95c728573c300264943d8338 (diff)
downloadmtk-20170518-7eb15898755be46e94078faffdacd8c9b0ce66cd.zip
mtk-20170518-7eb15898755be46e94078faffdacd8c9b0ce66cd.tar.gz
mtk-20170518-7eb15898755be46e94078faffdacd8c9b0ce66cd.tar.bz2
build system refactoring in preparation for allowing packages to do host-build steps
SVN-Revision: 14610
Diffstat (limited to 'tools/sstrip')
-rw-r--r--tools/sstrip/Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/tools/sstrip/Makefile b/tools/sstrip/Makefile
index 8d23e36..d93e761 100644
--- a/tools/sstrip/Makefile
+++ b/tools/sstrip/Makefile
@@ -10,15 +10,15 @@ PKG_NAME:=sstrip
include $(INCLUDE_DIR)/host-build.mk
-define Build/Compile
- $(CC) $(HOST_CFLAGS) -I./include -include endian.h -o $(PKG_BUILD_DIR)/sstrip src/sstrip.c
+define Host/Compile
+ $(CC) $(HOST_CFLAGS) -I./include -include endian.h -o $(HOST_BUILD_DIR)/sstrip src/sstrip.c
endef
-define Build/Install
- $(CP) $(PKG_BUILD_DIR)/sstrip $(STAGING_DIR_HOST)/bin/
+define Host/Install
+ $(CP) $(HOST_BUILD_DIR)/sstrip $(STAGING_DIR_HOST)/bin/
endef
-define Build/Clean
+define Host/Clean
rm -f $(STAGING_DIR_HOST)/bin/sstrip
endef