xref: /xnu-8796.141.3/tools/lockstat/Makefile (revision 1b191cb58250d0705d8a51287127505aa4bc0789)
1*1b191cb5SApple OSS DistributionsCFLAGS=-g -Os -arch x86_64 -arch i386
2*1b191cb5SApple OSS Distributions
3*1b191cb5SApple OSS DistributionsTARGETS	= lockstat
4*1b191cb5SApple OSS Distributions
5*1b191cb5SApple OSS Distributionsall:	$(TARGETS)
6*1b191cb5SApple OSS Distributions
7*1b191cb5SApple OSS Distributionslockstat: lockstat.c
8*1b191cb5SApple OSS Distributions	${CC} ${CFLAGS} -o $@ $?
9*1b191cb5SApple OSS Distributionsclean:
10*1b191cb5SApple OSS Distributions	rm -rf $(TARGETS)
11