X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/9045e25a9b5281a9cfe1e55b274e35449925cbbe..a2515db1098972c79864d2e2c8e0c18873dbd5c8:/tools/sstrip/Makefile diff --git a/tools/sstrip/Makefile b/tools/sstrip/Makefile index 4e409e0d8..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 ($(HOST_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))