11 lines
193 B
Makefile
Raw Normal View History

2024-09-07 18:00:09 +06:00
all: full reduce
full:
g++ strinforeduce.cpp -o strinforeduce
reduce:
g++ -DCAPSTONE_X86_REDUCE strinforeduce.cpp -o strinforeduce_reduce
clean:
rm -rf strinforeduce strinforeduce_reduce