X-Git-Url: http://git.ozo.com/?a=blobdiff_plain;f=tools%2Fsstrip%2FMakefile;h=38362a5f7c003be62e53ee8e72f0129bafb0054e;hb=5779a7549f48314ede29d3d6bd1f796f8398c625;hp=e861a4bfeaa89a8125e2305c181d08ade8e6d2b3;hpb=e225f119a7b136639695da38345d0c4d78abe2ea;p=openwrt-10.03%2F.git diff --git a/tools/sstrip/Makefile b/tools/sstrip/Makefile index e861a4bfe..38362a5f7 100644 --- a/tools/sstrip/Makefile +++ b/tools/sstrip/Makefile @@ -5,28 +5,21 @@ # See /LICENSE for more information. # include $(TOPDIR)/rules.mk -include $(INCLUDE_DIR)/host-build.mk PKG_NAME:=sstrip -PKG_BUILD_DIR:=$(TOOL_BUILD_DIR)/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 + $(CC) $(HOST_CFLAGS) -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))