diff --git a/make/makefile b/make/makefile index 4e1b0a2..818d98f 100644 --- a/make/makefile +++ b/make/makefile @@ -17,8 +17,11 @@ else linklibs = -lpthread else + # MSVC linklibs = -lrt -lpthread - endif + # MinGW + #linklibs = -lversion -lpthread + endif endif %.o: ../oscar64/%.cpp @@ -31,7 +34,7 @@ endif rm -f $@.$$$$ ../bin/oscar64 : $(objects) - $(CXX) $(CPPFLAGS) $(linklibs) $(objects) -o ../bin/oscar64 + $(CXX) $(CPPFLAGS) $(objects) $(linklibs) -o ../bin/oscar64 .PHONY : clean clean :