summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorTom Barrett <tombarrett@cornell.engr.siu.edu>2015-05-01 13:01:55 -0500
committerTom Barrett <tombarrett@cornell.engr.siu.edu>2015-05-01 13:01:55 -0500
commit87d20801300e90423c17ad425364f77152eb88c3 (patch)
treeaf0d1cf0022b160e87f3e5ae519d685bb2e693f9 /Makefile
parent29168e06ffcea8b8f55a9ed2e8acb3529e776456 (diff)
fixed directories and makefile
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 369b090..4dea6cc 100644
--- a/Makefile
+++ b/Makefile
@@ -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