summaryrefslogtreecommitdiffhomepage
path: root/examples/Makefile
diff options
context:
space:
mode:
authorGisteron <[email protected]>2023-07-02 18:51:27 +0200
committerGitHub <[email protected]>2023-07-02 18:51:27 +0200
commit64bb2fe3ec4994037467e44525c85abadce892e5 (patch)
treef66371180a0284889513988323d8bd279a6d1099 /examples/Makefile
parentd1ab031a273f6d012c81f3ed637771b7f3c72ef4 (diff)
downloadraylib-64bb2fe3ec4994037467e44525c85abadce892e5.tar.gz
raylib-64bb2fe3ec4994037467e44525c85abadce892e5.zip
fix vector angle example mode 0 circle segment drawing (#3150)
Diffstat (limited to 'examples/Makefile')
-rw-r--r--examples/Makefile11
1 files changed, 10 insertions, 1 deletions
diff --git a/examples/Makefile b/examples/Makefile
index c2ea35bf..15edf1b3 100644
--- a/examples/Makefile
+++ b/examples/Makefile
@@ -536,12 +536,20 @@ AUDIO = \
audio/audio_stream_effects \
audio/audio_mixed_processor
+OTHERS = \
+ others/easings_testbed \
+ others/embedded_files_loading \
+ others/raylib_opengl_interop \
+ others/raymath_vector_angle \
+ others/rlgl_compute_shader \
+ others/rlgl_standalone
+
CURRENT_MAKEFILE = $(lastword $(MAKEFILE_LIST))
# Define processes to execute
#------------------------------------------------------------------------------------------------
# Default target entry
-all: $(CORE) $(SHAPES) $(TEXT) $(TEXTURES) $(MODELS) $(SHADERS) $(AUDIO)
+all: $(CORE) $(SHAPES) $(TEXT) $(TEXTURES) $(MODELS) $(SHADERS) $(AUDIO) $(OTHERS)
core: $(CORE)
shapes: $(SHAPES)
@@ -550,6 +558,7 @@ text: $(TEXT)
models: $(MODELS)
shaders: $(SHADERS)
audio: $(AUDIO)
+others: $(OTHERS)
# Generic compilation pattern
# NOTE: Examples must be ready for Android compilation!