diff options
author | Tom Barrett <tombarrett@cornell.engr.siu.edu> | 2015-05-01 13:01:55 -0500 |
---|---|---|
committer | Tom Barrett <tombarrett@cornell.engr.siu.edu> | 2015-05-01 13:01:55 -0500 |
commit | 87d20801300e90423c17ad425364f77152eb88c3 (patch) | |
tree | af0d1cf0022b160e87f3e5ae519d685bb2e693f9 /Makefile | |
parent | 29168e06ffcea8b8f55a9ed2e8acb3529e776456 (diff) |
fixed directories and makefile
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,8 +1,9 @@ -OBJS = src/main.cpp src/window.cpp src/entity.cpp src/event.cpp src/creature.cpp src/resource.cpp +OBJS = src/*.cpp +DEPS = inc/ CC = g++ -COMPILER_FLAGS = -w +COMPILER_FLAGS = -w -I$(DEPS) LINKER_FLAGS = -lSDL2 -lSDL2_image |