This is xnu-11215.1.10. See this file in:
include ../Makefile.common

OBJROOT?=$(shell /bin/pwd)

DSTROOT?=$(shell /bin/pwd)

CFLAGS:=$(ARCH_FLAGS) -g -Wall -Os -isysroot $(SDKROOT) -framework CoreFoundation

all: $(DSTROOT)/mktimer_test

$(DSTROOT)/mktimer_test: $(OBJROOT)/mktimer_test.c
	$(CC) -o $@ $^ $(CFLAGS)

clean:
	rm -rf $(DSTROOT)/mktimer_test $(DSTROOT)/mk_timer_test.dSYM