aboutsummaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
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.