ThreadedExamples/example02_threaded_raytracing/buildWin/Makefile
Stephen Seo 9cff49e09d Revert "Fix buildWin/Makefile"
This reverts commit d4ff58db53.

A console window will probably be handy for the outputs that are
text-only.
2021-08-24 20:36:57 +09:00

14 lines
230 B
Makefile

CXX=x86_64-w64-mingw32-g++
CXXFLAGS=-O3 -DNDEBUG
all: Example02.exe
Example02.exe: ../src/main.o ../src/rayTracer.o ../src/argParse.o
$(CXX) -o Example02.exe -lpthread $^
.PHONY:
clean:
rm -f Example02.exe
rm -f ../src/*.o