historical/m0-applesillicon.git/xnu-qemu-arm64-5.1.0/capstone/suite/benchmark/Makefile

13 lines
238 B
Makefile
Raw Normal View History

2024-01-16 17:20:27 +00:00
# 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