aboutsummaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
authorghassanpl <kronikarz@gmail.com>2016-08-06 17:03:07 +0200
committerghassanpl <kronikarz@gmail.com>2016-08-06 17:03:07 +0200
commitcfe47cc8541355e9e802a6c2df7df8570c9a3d2a (patch)
tree197829790c7dd766f2b5f44df6e5b64d895b73e4 /src/Makefile
parent4960e6b6d7b4cba6125cfb8bb2fef043db8e5ba5 (diff)
parent3b80e2c1e03e0f87d50ca8876b50a11c7df1f56f (diff)
downloadraylib-cfe47cc8541355e9e802a6c2df7df8570c9a3d2a.tar.gz
raylib-cfe47cc8541355e9e802a6c2df7df8570c9a3d2a.zip
Merge branch 'develop' of https://github.com/raysan5/raylib into develop
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/Makefile b/src/Makefile
index 1360a920..e82c2861 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -168,7 +168,7 @@ endif
# compile all modules with their prerequisites
# compile core module
-core.o : core.c raylib.h rlgl.h utils.h raymath.h
+core.o : core.c raylib.h rlgl.h utils.h raymath.h gestures.h
$(CC) -c $< $(CFLAGS) $(INCLUDES) -D$(PLATFORM)
# compile rlgl module
@@ -207,10 +207,6 @@ utils.o : utils.c utils.h
camera.o : camera.c raylib.h
$(CC) -c $< $(CFLAGS) $(INCLUDES)
-#compile gestures module
-gestures.o : gestures.c raylib.h
- $(CC) -c $< $(CFLAGS) $(INCLUDES)
-
# It installs generated and needed files to compile projects using raylib.
# The installation works manually.
# TODO: add other platforms.