capstone/suite/benchmark/Makefile
2015-09-30 11:05:41 +08:00

13 lines
238 B
Makefile

# 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