diff options
Diffstat (limited to 'capstone/suite/benchmark/Makefile')
-rw-r--r-- | capstone/suite/benchmark/Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/capstone/suite/benchmark/Makefile b/capstone/suite/benchmark/Makefile new file mode 100644 index 000000000..b3368991e --- /dev/null +++ b/capstone/suite/benchmark/Makefile @@ -0,0 +1,12 @@ +# 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 |