blob: b3368991e1362f811f9f7251b2b77cfc407e4451 [file] [log] [blame]
# Sample Makefile for Capstone Disassembly Engine
LIBNAME = capstone
test_iter_benchmark: test_iter_benchmark.o
${CC} $< -O3 -Wall -l$(LIBNAME) -o $@
%.o: %.c
${CC} -c -I../../include $< -o $@
clean:
rm -rf *.o test_iter_benchmark