From 9b4a9ef2c4d552a81a6b31c84acbd01cddd6d0e5 Mon Sep 17 00:00:00 2001 From: CrackedPixel <5776225+CrackedPixel@users.noreply.github.com> Date: Sat, 14 Feb 2026 06:32:03 -0600 Subject: [PATCH] added missing builds from makefile --- examples/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/Makefile b/examples/Makefile index acfcb0857..ab48bc20e 100644 --- a/examples/Makefile +++ b/examples/Makefile @@ -740,7 +740,7 @@ OTHERS = \ # 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) @@ -749,6 +749,7 @@ text: $(TEXT) models: $(MODELS) shaders: $(SHADERS) audio: $(AUDIO) +others: $(OTHERS) # Generic compilation pattern # NOTE: Examples must be ready for Android compilation!