openwrtv3/openwrt/toolchain/sstrip/Makefile
Felix Fietkau e248cf0f00 massive cleanup of toolchain/
SVN-Revision: 4038
2006-06-21 06:19:43 +00:00

23 lines
424 B
Makefile

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
$(CP) $(PKG_BUILD_DIR)/sstrip $(STAGING_DIR)/bin
endef
define Build/Clean
rm -f $(STAGING_DIR)/bin/sstrip
endef
$(eval $(call HostBuild))