mirror of
https://github.com/hak5/wifipineapple-openwrt.git
synced 2025-10-29 16:57:19 +00:00
add some fixes for compiling on mac os x
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@574 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
@@ -3,6 +3,11 @@ include $(TOPDIR)/rules.mk
|
||||
TARGETS:=sstrip
|
||||
UTILS_BUILD_DIR:=$(TOOL_BUILD_DIR)/utils
|
||||
|
||||
OS:=$(shell uname)
|
||||
ifeq ($(OS),Darwin)
|
||||
CFLAGS += -I./include
|
||||
endif
|
||||
|
||||
prepare: $(UTILS_BUILD_DIR)
|
||||
compile: prepare $(patsubst %,$(UTILS_BUILD_DIR)/%,$(TARGETS))
|
||||
install: compile
|
||||
@@ -16,6 +21,6 @@ $(UTILS_BUILD_DIR):
|
||||
mkdir -p $(UTILS_BUILD_DIR)
|
||||
|
||||
$(UTILS_BUILD_DIR)/%: src/%.c
|
||||
$(CC) -o $@ $(patsubst $(UTILS_BUILD_DIR)/%,src/%.c,$@)
|
||||
$(CC) $(CFLAGS) -o $@ $(patsubst $(UTILS_BUILD_DIR)/%,src/%.c,$@)
|
||||
chmod 755 $@
|
||||
|
||||
|
||||
Reference in New Issue
Block a user