]>
Commit | Line | Data |
---|---|---|
1 | # stuff to include in every test Makefile | |
2 | ||
3 | SHELL = /bin/sh | |
4 | ||
5 | # set default OS to be current Mac OS X | |
6 | OS_NAME ?= MacOSX | |
7 | ifeq "$(OS_NAME)" "iPhoneOS" | |
8 | OS_VERSION ?= 3.1 | |
9 | ifeq "$(findstring -$(OS_VERSION)-,-3.0-3.1-3.2-4.0-4.1-4.2-4.3-)" "" | |
10 | OS_LION_FEATURES = 1 | |
11 | endif | |
12 | ARCH ?= armv7 | |
13 | VALID_ARCHS ?= armv7 | |
14 | else | |
15 | OS_VERSION ?= 10.7 | |
16 | ifeq "$(findstring -$(OS_VERSION)-,-10.4-10.5-10.6-)" "" | |
17 | OS_LION_FEATURES = 1 | |
18 | endif | |
19 | ARCH ?= x86_64 | |
20 | VALID_ARCHS ?= "i386 x86_64" | |
21 | endif | |
22 | ||
23 | IOSROOT = | |
24 | ||
25 | ifeq "$(OS_NAME)" "iPhoneOS" | |
26 | #IOSROOT = $(shell xcodebuild -version -sdk iphoneos.internal Path) | |
27 | IOSROOT = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.0.Internal.sdk | |
28 | CC = $(shell xcrun -sdk iphoneos.internal -find cc) -arch ${ARCH} -miphoneos-version-min=$(OS_VERSION) -isysroot $(IOSROOT) | |
29 | CXX = $(shell xcrun -sdk iphoneos.internal -find c++) -arch ${ARCH} -miphoneos-version-min=$(OS_VERSION) -isysroot $(IOSROOT) | |
30 | LIPO = $(shell xcrun -sdk iphoneos.internal -find lipo) | |
31 | STRIP = $(shell xcrun -sdk iphoneos.internal -find strip) | |
32 | INSTALL_NAME_TOOL = $(shell xcrun -sdk iphoneos.internal -find install_name_tool) | |
33 | else | |
34 | CC = $(shell xcrun -find cc) -arch ${ARCH} -mmacosx-version-min=$(OS_VERSION) | |
35 | CXX = $(shell xcrun -find c++) -arch ${ARCH} -mmacosx-version-min=$(OS_VERSION) | |
36 | LIPO = $(shell xcrun -find lipo) | |
37 | STRIP = $(shell xcrun -find strip) | |
38 | INSTALL_NAME_TOOL = $(shell xcrun -find install_name_tool) | |
39 | endif | |
40 | ||
41 | CCFLAGS = -Wall -std=c99 | |
42 | CXXFLAGS = -Wall | |
43 | ||
44 | RM = rm | |
45 | RMFLAGS = -rf | |
46 | ||
47 | SAFE_RUN = ${TESTROOT}/bin/fail-if-non-zero.pl | |
48 | PASS_IFF = ${TESTROOT}/bin/pass-iff-exit-zero.pl | |
49 | PASS_IFF_FAILURE = $(TESTROOT)/bin/exit-non-zero-pass.pl | |
50 | ||
51 | ifeq ($(ARCH),armv7) | |
52 | CCFLAGS += -mno-thumb | |
53 | CXXFLAGS += -mno-thumb | |
54 | override FILEARCH = arm | |
55 | else | |
56 | FILEARCH = $(ARCH) | |
57 | endif | |
58 | ||
59 | ifeq ($(ARCH),thumb) | |
60 | CCFLAGS += -mthumb | |
61 | CXXFLAGS += -mthumb | |
62 | override ARCH = armv6 | |
63 | override FILEARCH = arm | |
64 | else | |
65 | FILEARCH = $(ARCH) | |
66 | endif | |
67 | ||
68 | ifeq ($(ARCH),thumb2) | |
69 | CCFLAGS += -mthumb | |
70 | CXXFLAGS += -mthumb | |
71 | override ARCH = armv7 | |
72 | override FILEARCH = arm | |
73 | else | |
74 | FILEARCH = $(ARCH) | |
75 | endif | |
76 |