]> git.saurik.com Git - apple/xnu.git/blame - tools/tests/kernpost_test_report/Makefile
xnu-7195.101.1.tar.gz
[apple/xnu.git] / tools / tests / kernpost_test_report / Makefile
CommitLineData
c3c9b80d
A
1include ../Makefile.common
2
3DSTROOT?=$(shell /bin/pwd)
4SYMROOT?=$(shell /bin/pwd)
5OBJROOT?=$(shell /bin/pwd)
6
7CC:=$(shell xcrun -sdk "$(SDKROOT)" -find cc)
8
9CFLAGS:=$(ARCH_FLAGS) -g -Wall -Os -isysroot $(SDKROOT) -I$(SDKROOT)/System/Library/Frameworks/System.framework/PrivateHeaders -lkdd -framework Foundation
10
11all: $(DSTROOT)/kernpost_test_report
12
13$(DSTROOT)/kernpost_test_report: kernpost_test_report.m
14 $(CC) -o $@ $^ $(subst -arch i386,,$(CFLAGS))
15
16clean:
17 rm -f $(DSTROOT)/kernpost_test_report $(OBJROOT)/*.o
18 rm -rf $(SYMROOT)/*.dSYM