X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fopenwrt.git;a=blobdiff_plain;f=tools%2Fsstrip%2FMakefile;h=045d080785a5acef3187c348511d91443144deaa;hp=4e409e0d8dc598d270a1d80de7971a44e6e919fc;hb=9821ce8ed698cb66f419d21eb4b57fc75a65e488;hpb=60c1f0f64d23003a19a07d6b9638542130f6641d diff --git a/tools/sstrip/Makefile b/tools/sstrip/Makefile index 4e409e0d8d..045d080785 100644 --- a/tools/sstrip/Makefile +++ b/tools/sstrip/Makefile @@ -1,30 +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_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 +define Host/Compile + $(HOSTCC) $(HOST_CFLAGS) -include endian.h $(HOST_STATIC_LINKING) -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))