X-Git-Url: http://git.ozo.com/?a=blobdiff_plain;f=tools%2Fsstrip%2FMakefile;h=d93e7618d14200f4da565a9b0c9baaaeecd47c4d;hb=5ad9c27d392ec26d1b4cd2dd6f23fa4d99d425fd;hp=f978eae2647f333f5df9d3e10fc27a30300d6eca;hpb=d4451582d7ae78dbf0fd5ea41cc1a116afaf16bf;p=openwrt-10.03%2F.git diff --git a/tools/sstrip/Makefile b/tools/sstrip/Makefile index f978eae26..d93e7618d 100644 --- a/tools/sstrip/Makefile +++ b/tools/sstrip/Makefile @@ -7,27 +7,19 @@ include $(TOPDIR)/rules.mk PKG_NAME:=sstrip -PKG_BUILD_DIR:=$(TOOL_BUILD_DIR)/sstrip include $(INCLUDE_DIR)/host-build.mk -OS:=$(shell uname) -ifeq ($(HOST_OS),Darwin) - CFLAGS += -I./include -endif -CFLAGS += -I $(TOPDIR)/tools/include -include endian.h - -define Build/Compile - $(CC) $(CFLAGS) -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 - mkdir -p $(STAGING_DIR)/bin - $(CP) $(PKG_BUILD_DIR)/sstrip $(STAGING_DIR)/bin/ +define Host/Install + $(CP) $(HOST_BUILD_DIR)/sstrip $(STAGING_DIR_HOST)/bin/ endef -define Build/Clean - rm -f $(STAGING_DIR)/bin/sstrip +define Host/Clean + rm -f $(STAGING_DIR_HOST)/bin/sstrip endef $(eval $(call HostBuild))