This is xnu-11215.1.10. See this file in:
include ../Makefile.common
DSTROOT?=$(shell /bin/pwd)
SYMROOT?=$(shell /bin/pwd)
OBJROOT?=$(shell /bin/pwd)
CFLAGS:=$(ARCH_FLAGS) -g -Wall -Os -isysroot $(SDKROOT) -I$(SDKROOT)/System/Library/Frameworks/System.framework/PrivateHeaders
all: $(DSTROOT)/jitter
$(DSTROOT)/jitter: timer_jitter.c
$(CC) -o $@ $^ $(CFLAGS)
clean:
rm -f $(DSTROOT)/jitter $(OBJROOT)/*.o
rm -rf $(SYMROOT)/*.dSYM