X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=Makefile;h=4e4d994c681901e2c32cd00cc261d4769db2de0e;hb=afc50302943e4000a8621c23960d63b208c8a400;hp=7bafccd6a6e74e2c436e4b0f218736d30237219b;hpb=f27b8bb27fa87487bb5d29a1456e610255287b04;p=blank.git diff --git a/Makefile b/Makefile index 7bafccd..4e4d994 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ CXX = g++ --std=c++11 LDXX = g++ -LIBS = sdl2 SDL2_image SDL2_ttf glew openal freealut zlib +LIBS = sdl2 SDL2_image SDL2_net SDL2_ttf glew openal freealut zlib PKGFLAGS := $(shell pkg-config --cflags $(LIBS)) PKGLIBS := $(shell pkg-config --libs $(LIBS)) @@ -16,7 +16,7 @@ LDXXFLAGS ?= LDXXFLAGS += $(PKGLIBS) DEBUG_FLAGS = -g3 -O0 -PROFILE_FLAGS = -DNDEBUG -O1 -g3 +PROFILE_FLAGS = -DNDEBUG -O1 -g3 -DBLANK_PROFILING RELEASE_FLAGS = -DNDEBUG -O2 -g1 TEST_FLAGS = -g -O2 -I./src $(TESTFLAGS) @@ -64,6 +64,12 @@ tests: $(TEST_BIN) run: $(ASSET_DEP) blank ./blank --save-path saves/ +server: $(ASSET_DEP) blank + ./blank --server --save-path saves/ + +client: $(ASSET_DEP) blank + ./blank --client --save-path saves/ + gdb: $(ASSET_DEP) blank.debug gdb ./blank.debug @@ -72,10 +78,11 @@ cachegrind: $(ASSET_DEP) blank.profile callgrind: $(ASSET_DEP) blank.profile valgrind --tool=callgrind \ + --collect-atstart=no --toggle-collect="blank::Runtime::RunStandalone()" \ --branch-sim=yes --cacheuse=yes --cache-sim=yes \ --collect-bus=yes --collect-systime=yes --collect-jumps=yes \ --dump-instr=yes --simulate-hwpref=yes --simulate-wb=yes \ - ./blank.profile -n 128 -t 16 --no-keyboard --no-mouse -d --no-vsync --save-path saves/ + ./blank.profile -n 256 -t 16 --no-keyboard --no-mouse -d --no-vsync --save-path saves/ test: blank.test ./blank.test @@ -85,7 +92,7 @@ clean: distclean: clean rm -f $(BIN) cachegrind.out.* callgrind.out.* - rm -Rf build saves + rm -Rf build client-saves saves .PHONY: all release debug profile tests run gdb cachegrind callgrind test clean distclean