xref: /xnu-11215/tools/tests/mktimer/Makefile (revision 5c2921b0)
1include ../Makefile.common
2
3OBJROOT?=$(shell /bin/pwd)
4
5DSTROOT?=$(shell /bin/pwd)
6
7CFLAGS:=$(ARCH_FLAGS) -g -Wall -Os -isysroot $(SDKROOT) -framework CoreFoundation
8
9all: $(DSTROOT)/mktimer_test
10
11$(DSTROOT)/mktimer_test: $(OBJROOT)/mktimer_test.c
12	$(CC) -o $@ $^ $(CFLAGS)
13
14clean:
15	rm -rf $(DSTROOT)/mktimer_test $(DSTROOT)/mk_timer_test.dSYM
16