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