From a7a81ca7492772637c43cb48a92405784872f857 Mon Sep 17 00:00:00 2001 From: raysan5 Date: Wed, 2 Sep 2015 02:41:21 +0200 Subject: Added example: box collisions --- examples/makefile | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'examples/makefile') diff --git a/examples/makefile b/examples/makefile index 15a4bd0a..dac378ce 100644 --- a/examples/makefile +++ b/examples/makefile @@ -179,6 +179,7 @@ EXAMPLES = \ text_format_text \ text_font_select \ models_geometric_shapes \ + models_box_collisions \ models_billboard \ models_obj_loading \ models_heightmap \ @@ -325,6 +326,10 @@ text_font_select: text_font_select.c models_geometric_shapes: models_geometric_shapes.c $(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDES) $(LFLAGS) $(LIBS) -D$(PLATFORM) $(WINFLAGS) +# compile [models] example - box collisions +models_box_collisions: models_box_collisions.c + $(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDES) $(LFLAGS) $(LIBS) -D$(PLATFORM) $(WINFLAGS) + # compile [models] example - basic window models_planes: models_planes.c $(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDES) $(LFLAGS) $(LIBS) -D$(PLATFORM) $(WINFLAGS) -- cgit v1.2.3