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
1 changed files with 1 additions and 1 deletions

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