From 44af1866aa41cfbbad48583106cb82201ded4fcb Mon Sep 17 00:00:00 2001 From: nbd Date: Wed, 27 Sep 2006 14:06:46 +0000 Subject: move tools from toolchain/ to tools/ git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4866 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- tools/sstrip/Makefile | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 tools/sstrip/Makefile (limited to 'tools/sstrip/Makefile') diff --git a/tools/sstrip/Makefile b/tools/sstrip/Makefile new file mode 100644 index 0000000000..dc3ff4f6da --- /dev/null +++ b/tools/sstrip/Makefile @@ -0,0 +1,30 @@ +# +# Copyright (C) 2006 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 + +OS:=$(shell uname) +ifeq ($(OS),Darwin) + CFLAGS += -I./include +endif + +define Build/Compile + $(CC) $(CFLAGS) -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/ +endef + +define Build/Clean + rm -f $(STAGING_DIR)/bin/sstrip +endef + +$(eval $(call HostBuild)) -- cgit v1.2.3 From 9045e25a9b5281a9cfe1e55b274e35449925cbbe Mon Sep 17 00:00:00 2001 From: nbd Date: Tue, 10 Oct 2006 19:19:24 +0000 Subject: change OS to HOST_OS git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@5030 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- tools/mtd-utils/Makefile | 2 +- tools/sstrip/Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'tools/sstrip/Makefile') diff --git a/tools/mtd-utils/Makefile b/tools/mtd-utils/Makefile index f67ccf758f..bc15f0a671 100644 --- a/tools/mtd-utils/Makefile +++ b/tools/mtd-utils/Makefile @@ -19,7 +19,7 @@ PKG_BUILD_DIR:=$(TOOL_BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION).orig include $(INCLUDE_DIR)/host-build.mk CFLAGS := $(HOSTCFLAGS) -O2 -I../include -ifneq ($(OS),Linux) +ifneq ($(HOST_OS),Linux) CFLAGS += -Dloff_t=off_t -D__BYTE_ORDER=BYTE_ORDER -I$(STAGING_DIR)/include-host -include getline.h -include endian.h endif diff --git a/tools/sstrip/Makefile b/tools/sstrip/Makefile index dc3ff4f6da..4e409e0d8d 100644 --- a/tools/sstrip/Makefile +++ b/tools/sstrip/Makefile @@ -10,7 +10,7 @@ include $(INCLUDE_DIR)/host-build.mk PKG_BUILD_DIR:=$(TOOL_BUILD_DIR)/sstrip OS:=$(shell uname) -ifeq ($(OS),Darwin) +ifeq ($(HOST_OS),Darwin) CFLAGS += -I./include endif -- cgit v1.2.3