From 2126dff7b6554886c66a35f9ba37a6db7860f4f3 Mon Sep 17 00:00:00 2001 From: "matthias.ringwald@gmail.com" Date: Sat, 4 Jan 2014 20:49:46 +0000 Subject: [PATCH] fix example compile --- example/Makefile.iphone | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/example/Makefile.iphone b/example/Makefile.iphone index 8d85dfbb5..9f4e539a6 100644 --- a/example/Makefile.iphone +++ b/example/Makefile.iphone @@ -1,4 +1,3 @@ -include $(THEOS)/makefiles/common.mk # lipoplastic setup for armv6 + arm64 compilation TARGET := iphone:clang @@ -9,7 +8,7 @@ TARGET_IPHONEOS_DEPLOYMENT_VERSION_arm64 = 7.0 ARCHS = armv6 arm64 ADDITIONAL_CFLAGS = -I.. -I../include -ADDITIONAL_LDFLAGS = -L../src/obj -lBTstack +ADDITIONAL_LDFLAGS = -L../src/.theos/obj -lBTstack TOOL_NAME = inquiry l2cap-test rfcomm-echo rfcomm-cat rfcomm-test l2cap-server l2cap-throughput @@ -21,4 +20,5 @@ l2cap-test_FILES = test.c l2cap-server_FILES = l2cap-server.c l2cap-throughput_FILES = l2cap-throughput.c +include $(THEOS)/makefiles/common.mk include $(THEOS_MAKE_PATH)/tool.mk