historical/m0-applesillicon.git/xnu-qemu-arm64-5.1.0/capstone/suite/benchmark/Makefile
2024-01-16 11:20:27 -06:00

12 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