1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-04 21:42:01 +03:00
openwrt-xburst/toolchain/sstrip/Makefile

24 lines
424 B
Makefile
Raw Normal View History

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))