diff options
| author | raysan5 <raysan5@gmail.com> | 2016-08-06 16:32:46 +0200 |
|---|---|---|
| committer | raysan5 <raysan5@gmail.com> | 2016-08-06 16:32:46 +0200 |
| commit | 3b80e2c1e03e0f87d50ca8876b50a11c7df1f56f (patch) | |
| tree | 6975a142da134a2ce142faf5cd3548b24d90843c /src/Makefile | |
| parent | d5f5f0a9302435945b730e5ec001bda39741f3c7 (diff) | |
| download | raylib-3b80e2c1e03e0f87d50ca8876b50a11c7df1f56f.tar.gz raylib-3b80e2c1e03e0f87d50ca8876b50a11c7df1f56f.zip | |
Redesigned gestures module to header-only
Diffstat (limited to 'src/Makefile')
| -rw-r--r-- | src/Makefile | 6 |
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. |
