aboutsummaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
authorraysan5 <raysan5@gmail.com>2016-08-06 16:32:46 +0200
committerraysan5 <raysan5@gmail.com>2016-08-06 16:32:46 +0200
commit3b80e2c1e03e0f87d50ca8876b50a11c7df1f56f (patch)
tree6975a142da134a2ce142faf5cd3548b24d90843c /src/Makefile
parentd5f5f0a9302435945b730e5ec001bda39741f3c7 (diff)
downloadraylib-3b80e2c1e03e0f87d50ca8876b50a11c7df1f56f.tar.gz
raylib-3b80e2c1e03e0f87d50ca8876b50a11c7df1f56f.zip
Redesigned gestures module to header-only
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.