1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-11-28 06:39:55 +00:00

fix order of options to g++ in Makefile.simple

This commit is contained in:
still-flow 2020-05-28 15:13:45 +03:00
parent 61d824803c
commit 9ef8b28129

View File

@ -162,7 +162,7 @@ savepng$(OBJ_EXTENSION): savepng.cpp
$(CXX) -O2 $(CXXFLAGS) -c savepng.cpp -o $@
mymake$(EXE_EXTENSION): mymake.cpp
$(CXX) -O2 $(CXXFLAGS) -lpthread mymake.cpp -o $@
$(CXX) -O2 $(CXXFLAGS) mymake.cpp -lpthread -o $@
emscripten: hyper.html