diff options
author | Paweł Redman <pawel.redman@gmail.com> | 2017-10-09 19:24:08 +0200 |
---|---|---|
committer | Paweł Redman <pawel.redman@gmail.com> | 2017-10-09 19:24:08 +0200 |
commit | 8d6cb03cd83b9f6576909058601af54f16c8acfe (patch) | |
tree | 1aae264859680e888c5801f279b638cefa137fb9 /Makefile | |
parent | 9e7d64d052eabcf40d85c3e903aaba44903a380a (diff) |
Refactoring and basic map generation.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,5 +1,5 @@ CC ?= gcc -CFLAGS += -g3 -O3 -Wall +CFLAGS += -g3 -O3 -Wall -std=gnu++11 CPPFLAGS += -MMD LDFLAGS += -lstdc++ -lm -lsfml-system -lsfml-window -lsfml-graphics @@ -12,6 +12,7 @@ PP_RM := $(PP_BOLD)$(shell tput setf 4)RM$(PP_RESET) SRC := src/game.cpp \ src/interface.cpp \ src/main.cpp \ + src/procgen.cpp \ src/render.cpp \ src/world.cpp |