mirror of
https://git.wownero.com/wownero/RandomWOW.git
synced 2024-08-15 00:23:14 +00:00
10 lines
No EOL
271 B
Makefile
10 lines
No EOL
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
|