X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/44af1866aa41cfbbad48583106cb82201ded4fcb..6cc48ee631c430ca6ec287ba86936f6c8af86a03:/tools/sstrip/Makefile

diff --git a/tools/sstrip/Makefile b/tools/sstrip/Makefile
index dc3ff4f6d..8d23e36e8 100644
--- a/tools/sstrip/Makefile
+++ b/tools/sstrip/Makefile
@@ -5,26 +5,21 @@
 # See /LICENSE for more information.
 #
 include $(TOPDIR)/rules.mk
-include $(INCLUDE_DIR)/host-build.mk
 
-PKG_BUILD_DIR:=$(TOOL_BUILD_DIR)/sstrip
+PKG_NAME:=sstrip
 
-OS:=$(shell uname)
-ifeq ($(OS),Darwin)
-  CFLAGS += -I./include
-endif
+include $(INCLUDE_DIR)/host-build.mk
 
 define Build/Compile
-	$(CC) $(CFLAGS) -o $(PKG_BUILD_DIR)/sstrip src/sstrip.c
+	$(CC) $(HOST_CFLAGS) -I./include -include endian.h -o $(PKG_BUILD_DIR)/sstrip src/sstrip.c
 endef
 
 define Build/Install
-	mkdir -p $(STAGING_DIR)/bin
-	$(CP) $(PKG_BUILD_DIR)/sstrip $(STAGING_DIR)/bin/
+	$(CP) $(PKG_BUILD_DIR)/sstrip $(STAGING_DIR_HOST)/bin/
 endef
 
 define Build/Clean
-	rm -f $(STAGING_DIR)/bin/sstrip
+	rm -f $(STAGING_DIR_HOST)/bin/sstrip
 endef
 
 $(eval $(call HostBuild))