mirror of
https://codeberg.org/wownero/RandomWOW
synced 2026-03-04 21:57:36 -05: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
|