]> git.saurik.com Git - apple/xnu.git/blame - tools/tests/TLBcoherency/Makefile
xnu-6153.141.1.tar.gz
[apple/xnu.git] / tools / tests / TLBcoherency / Makefile
CommitLineData
4bd07ac2
A
1include ../Makefile.common
2
3CC:=$(shell xcrun -sdk "$(SDKROOT)" -find cc)
4
5ifdef RC_ARCHS
6 ARCHS:=$(RC_ARCHS)
7 else
8 ifeq "$(Embedded)" "YES"
9 ARCHS:=armv7 armv7s arm64 armv7k
10 else
11 ARCHS:=x86_64
12 endif
13endif
14
15CFLAGS := -g $(patsubst %, -arch %, $(ARCHS)) -isysroot $(SDKROOT) -isystem $(SDKROOT)/System/Library/Frameworks/System.framework/PrivateHeaders
16
17DSTROOT?=$(shell /bin/pwd)
18SYMROOT?=$(shell /bin/pwd)
19
20DEBUG:=0
21
22$(DSTROOT)/tlbcoh: TLBcoherency.c
23 $(CC) $(CFLAGS) -Wall TLBcoherency.c -o $(SYMROOT)/$(notdir $@) -DDEBUG=$(DEBUG) -g -Os
24 if [ ! -e $@ ]; then ditto $(SYMROOT)/$(notdir $@) $@; fi
25
26clean:
27 rm -rf $(DSTROOT)/tlbcoh $(SYMROOT)/*.dSYM $(SYMROOT)/tlbcoh