]> git.saurik.com Git - apple/xnu.git/blame - tools/tests/superpages/Makefile
xnu-7195.50.7.100.1.tar.gz
[apple/xnu.git] / tools / tests / superpages / Makefile
CommitLineData
3e170ce0 1include ../Makefile.common
39236c6e
A
2
3DSTROOT?=$(shell /bin/pwd)
4TARGETS := $(addprefix $(DSTROOT)/, measure_tlbs testsp)
fe8ab488 5CC:=$(shell xcrun -sdk "$(SDKROOT)" -find cc)
39236c6e 6
f427ee49
A
7CFLAGS += $(ARCH_FLAGS) -isysroot $(SDKROOT)
8CFLAGS += -Wl,-sectcreate,__INFO_FILTER,__disable,/dev/null
39236c6e
A
9
10all: $(TARGETS)
11
12clean:
13 rm -f $(TARGETS)
14
15$(TARGETS): $(DSTROOT)/%: %.c
16 $(CC) $(CFLAGS) -o $@ $<