diff options
| author | raysan5 <raysan5@gmail.com> | 2015-09-02 02:41:21 +0200 |
|---|---|---|
| committer | raysan5 <raysan5@gmail.com> | 2015-09-02 02:41:21 +0200 |
| commit | a7a81ca7492772637c43cb48a92405784872f857 (patch) | |
| tree | 1098744e9172b7686d7804ba11a8e3292e01d69b /examples/makefile | |
| parent | 4879106096c868e5c8f16ca3796dcb9c85c0dac6 (diff) | |
| download | raylib-a7a81ca7492772637c43cb48a92405784872f857.tar.gz raylib-a7a81ca7492772637c43cb48a92405784872f857.zip | |
Added example: box collisions
Diffstat (limited to 'examples/makefile')
| -rw-r--r-- | examples/makefile | 5 |
1 files changed, 5 insertions, 0 deletions
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) |
