1 # Sample Makefile for Capstone Disassembly Engine 2 3 LIBNAME = capstone 4 5 test_iter_benchmark: test_iter_benchmark.o 6 ${CC} $< -O3 -Wall -l$(LIBNAME) -o $@ 7 8 %.o: %.c 9 ${CC} -c -I../../include $< -o $@ 10 11 clean: 12 rm -rf *.o test_iter_benchmark 13