]> git.saurik.com Git - apple/xnu.git/blame_incremental - tools/tests/superpages/Makefile
xnu-3247.1.106.tar.gz
[apple/xnu.git] / tools / tests / superpages / Makefile
... / ...
CommitLineData
1include ../Makefile.common
2
3DSTROOT?=$(shell /bin/pwd)
4TARGETS := $(addprefix $(DSTROOT)/, measure_tlbs testsp)
5CC:=$(shell xcrun -sdk "$(SDKROOT)" -find cc)
6
7ifdef RC_ARCHS
8 ARCHS:=$(RC_ARCHS)
9 else
10 ifeq "$(Embedded)" "YES"
11 ARCHS:=armv7 armv7s arm64
12 else
13 ARCHS:=x86_64 i386
14 endif
15endif
16
17CFLAGS += $(patsubst %, -arch %, $(ARCHS)) -isysroot $(SDKROOT)
18
19all: $(TARGETS)
20
21clean:
22 rm -f $(TARGETS)
23
24$(TARGETS): $(DSTROOT)/%: %.c
25 $(CC) $(CFLAGS) -o $@ $<