mirror of
https://git.wownero.com/wownero/RandomWOW.git
synced 2024-12-23 08:18:53 +00:00
10 lines
271 B
Makefile
10 lines
271 B
Makefile
|
CXXFLAGS=-Wall -std=c++17 -O0
|
||
|
|
||
|
TestAluFpu: TestAluFpu.o InstructionsPortable.o
|
||
|
$(CXX) TestAluFpu.o InstructionsPortable.o -o $@
|
||
|
|
||
|
TestAluFpu.o: TestAluFpu.cpp
|
||
|
InstructionsPortable.o: InstructionsPortable.cpp
|
||
|
|
||
|
clean:
|
||
|
rm -f TestAluFpu TestAluFpu.o InstructionsPortable.o
|