summaryrefslogtreecommitdiffhomepage
path: root/examples/Makefile
diff options
context:
space:
mode:
authorRay <[email protected]>2017-01-05 17:33:23 +0100
committerGitHub <[email protected]>2017-01-05 17:33:23 +0100
commit0369bb4c8cfe8988634a09d56c307b73be281452 (patch)
tree0861780ddb9b024fff87bdd22e7be37d60d7facb /examples/Makefile
parent81388363fa844956d0e1d023693f803c5ec21c7a (diff)
parentd5d391faaf69027b8fecb26f30754c3bff83c311 (diff)
downloadraylib-0369bb4c8cfe8988634a09d56c307b73be281452.tar.gz
raylib-0369bb4c8cfe8988634a09d56c307b73be281452.zip
Merge pull request #212 from joeld42/jbd_picking
Raycast Picking Utilities
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)