mirror of
https://github.com/SimoneN64/Kaizen.git
synced 2025-04-02 10:41:53 -04:00
10 lines
193 B
Makefile
10 lines
193 B
Makefile
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
|