summaryrefslogtreecommitdiffhomepage
path: root/examples/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'examples/Makefile')
-rw-r--r--examples/Makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/examples/Makefile b/examples/Makefile
index 710e97c4..676529c7 100644
--- a/examples/Makefile
+++ b/examples/Makefile
@@ -203,6 +203,7 @@ EXAMPLES = \
core_gestures_detection \
core_3d_mode \
core_3d_picking \
+ core_3d_raypick \
core_3d_camera_free \
core_3d_camera_first_person \
core_2d_camera \
@@ -320,6 +321,11 @@ core_3d_mode: core_3d_mode.c
core_3d_picking: core_3d_picking.c
$(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDES) $(LFLAGS) $(LIBS) -D$(PLATFORM) $(WINFLAGS)
+# compile [core] example - 3d ray picking
+core_3d_raypick: core_3d_raypick.c
+ $(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDES) $(LFLAGS) $(LIBS) -D$(PLATFORM) $(WINFLAGS)
+
+
# compile [core] example - 3d camera free
core_3d_camera_free: core_3d_camera_free.c
$(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDES) $(LFLAGS) $(LIBS) -D$(PLATFORM) $(WINFLAGS)