X-Git-Url: https://git.archive.openwrt.org/?p=openwrt.git;a=blobdiff_plain;f=tools%2Fsstrip%2FMakefile;h=b10a2523c3dd702890b743a5e959af49b922d11d;hp=e861a4bfeaa89a8125e2305c181d08ade8e6d2b3;hb=49a14da43273c45dc59b07b9da67c976f84292e3;hpb=e225f119a7b136639695da38345d0c4d78abe2ea diff --git a/tools/sstrip/Makefile b/tools/sstrip/Makefile index e861a4bfea..b10a2523c3 100644 --- a/tools/sstrip/Makefile +++ b/tools/sstrip/Makefile @@ -1,32 +1,25 @@ # -# Copyright (C) 2006 OpenWrt.org +# Copyright (C) 2006-2012 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # 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 +define Host/Compile + $(HOSTCC) $(HOST_CFLAGS) -I./include -include endian.h -static -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))