summaryrefslogtreecommitdiffhomepage
path: root/examples/Makefile
diff options
context:
space:
mode:
authorRay <[email protected]>2022-06-06 11:00:06 +0200
committerRay <[email protected]>2022-06-06 11:00:06 +0200
commit8da566d6e7cb9f36d523e4d3b8f52e52079f27bc (patch)
tree3498cb68b5064c905aa5c1cf8d34fc1063e27a4d /examples/Makefile
parent865a44adda0a3b32b39c0f20a85b45f5001f274b (diff)
downloadraylib-8da566d6e7cb9f36d523e4d3b8f52e52079f27bc.tar.gz
raylib-8da566d6e7cb9f36d523e4d3b8f52e52079f27bc.zip
WARNING: Removed `physac` from raylib sources/examples
`physac` is available on its own repo
Diffstat (limited to 'examples/Makefile')
-rw-r--r--examples/Makefile11
1 files changed, 1 insertions, 10 deletions
diff --git a/examples/Makefile b/examples/Makefile
index 1ab0b6c6..67df5989 100644
--- a/examples/Makefile
+++ b/examples/Makefile
@@ -494,20 +494,12 @@ AUDIO = \
audio/audio_sound_loading \
audio/audio_multichannel_sound
-PHYSICS = \
- physics/physics_demo \
- physics/physics_friction \
- physics/physics_movement \
- physics/physics_restitution \
- physics/physics_shatter
-
-
CURRENT_MAKEFILE = $(lastword $(MAKEFILE_LIST))
# Define processes to execute
#------------------------------------------------------------------------------------------------
# Default target entry
-all: $(CORE) $(SHAPES) $(TEXT) $(TEXTURES) $(MODELS) $(SHADERS) $(AUDIO) $(PHYSICS)
+all: $(CORE) $(SHAPES) $(TEXT) $(TEXTURES) $(MODELS) $(SHADERS) $(AUDIO)
core: $(CORE)
shapes: $(SHAPES)
@@ -516,7 +508,6 @@ text: $(TEXT)
models: $(MODELS)
shaders: $(SHADERS)
audio: $(AUDIO)
-physics: $(PHYSICS)
# Generic compilation pattern
# NOTE: Examples must be ready for Android compilation!