1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
--- a/Makefile
+++ b/Makefile
@@ -60,7 +60,7 @@
$(CCACHE) $(CXX) \
$(BASE_CXXFLAGS) $(LDFLAGS) $(CXXFLAGS) $(CPPFLAGS) $(INC) \
$(objects) -o game \
- $(LIBS) -lboost_regex -lboost_system -lpthread -fthreadsafe-statics
+ $(LIBS) -lboost_regex -lpthread -fthreadsafe-statics
# pull in dependency info for *existing* .o files
-include $(objects:.o=.d)
@@ -69,7 +69,7 @@
$(CCACHE) $(CXX) \
$(BASE_CXXFLAGS) $(LDFLAGS) $(CXXFLAGS) $(CPPFLAGS) \
$(server_objects) -o server \
- $(LIBS) -lboost_regex-mt -lboost_system-mt -lboost_thread-mt -lboost_iostreams-mt
+ $(LIBS) -lboost_regex-mt -lboost_thread-mt -lboost_iostreams-mt
clean:
rm -f *.o *.d game
|