]> git.localhorst.tv Git - blank.git/blobdiff - Makefile
blank screen before doing anything serious
[blank.git] / Makefile
index 2a355cd9f45c0ab187a2e1f7e4dabff72dc75dba..36fd0214bb30a3be2a445a74d492fcff38864711 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
 CXX = g++ --std=c++11
 LDXX = g++
 
-LIBS = sdl2 SDL2_image SDL2_ttf glew
+LIBS = sdl2 SDL2_image SDL2_ttf glew openal freealut zlib
 
 PKGFLAGS := $(shell pkg-config --cflags $(LIBS))
 PKGLIBS := $(shell pkg-config --libs $(LIBS))
@@ -62,20 +62,20 @@ profile: $(PROFILE_BIN)
 tests: $(TEST_BIN)
 
 run: $(ASSET_DEP) blank
-       ./blank
+       ./blank --save-path saves/
 
 gdb: $(ASSET_DEP) blank.debug
        gdb ./blank.debug
 
 cachegrind: $(ASSET_DEP) blank.profile
-       valgrind ./blank.profile
+       valgrind ./blank.profile --save-path saves/
 
 callgrind: $(ASSET_DEP) blank.profile
        valgrind --tool=callgrind \
                --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
+               ./blank.profile -n 128 -t 16 --no-keyboard --no-mouse -d --no-vsync --save-path saves/
 
 test: blank.test
        ./blank.test
@@ -85,6 +85,7 @@ clean:
 
 distclean: clean
        rm -f $(BIN) cachegrind.out.* callgrind.out.*
+       rm -Rf build saves
 
 .PHONY: all release debug profile tests run gdb cachegrind callgrind test clean distclean