mirror of
https://github.com/hedge-dev/XenonRecomp.git
synced 2025-06-10 17:45:08 +00:00
11 lines
193 B
Makefile
11 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
|