X-Git-Url: http://git.ozo.com/?a=blobdiff_plain;f=tools%2Fsstrip%2FMakefile;h=d93e7618d14200f4da565a9b0c9baaaeecd47c4d;hb=dd63d29cdd8b6015f5b615b9da85818c5c38adff;hp=87f331214ad138d72f850d4a347fd815caafd7ca;hpb=6d32c25e55533ffe115413ce0aed2474a0a4ccf1;p=openwrt-10.03%2F.git diff --git a/tools/sstrip/Makefile b/tools/sstrip/Makefile index 87f331214..d93e7618d 100644 --- a/tools/sstrip/Makefile +++ b/tools/sstrip/Makefile @@ -5,27 +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 -CFLAGS += -I $(TOPDIR)/tools/include -include endian.h +include $(INCLUDE_DIR)/host-build.mk -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))