diff options
author | Felix Fietkau <nbd@openwrt.org> | 2007-08-07 00:04:25 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2007-08-07 00:04:25 +0000 |
commit | c6bc77ea365704f3f5c79d64aed069792a4e95b1 (patch) | |
tree | 28c9265495e6ad751fcae0d27a040b222ff2a215 /tools/sstrip | |
parent | 9882253827b16579bbd317f6e8c0deb75b0ca0f3 (diff) | |
download | mtk-20170518-c6bc77ea365704f3f5c79d64aed069792a4e95b1.zip mtk-20170518-c6bc77ea365704f3f5c79d64aed069792a4e95b1.tar.gz mtk-20170518-c6bc77ea365704f3f5c79d64aed069792a4e95b1.tar.bz2 |
build system cleanup/restructuring as described in http://lists.openwrt.org/pipermail/openwrt-devel/2007-August/001159.html
SVN-Revision: 8362
Diffstat (limited to 'tools/sstrip')
-rw-r--r-- | tools/sstrip/Makefile | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/tools/sstrip/Makefile b/tools/sstrip/Makefile index f978eae..38362a5 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 + $(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)) |