mirror of
https://github.com/capstone-engine/capstone.git
synced 2024-11-24 14:09:56 +00:00
13 lines
238 B
Makefile
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
|