@@ -514,6 +514,7 @@ CORE = \
514514 core/core_basic_window \
515515 core/core_custom_frame_control \
516516 core/core_custom_logging \
517+ core/core_delta_time \
517518 core/core_drop_files \
518519 core/core_high_dpi \
519520 core/core_input_actions \
@@ -525,6 +526,7 @@ CORE = \
525526 core/core_input_mouse_wheel \
526527 core/core_input_multitouch \
527528 core/core_input_virtual_controls \
529+ core/core_monitor_change \
528530 core/core_random_sequence \
529531 core/core_random_values \
530532 core/core_render_texture \
@@ -545,22 +547,26 @@ SHAPES = \
545547 shapes/shapes_circle_sector_drawing \
546548 shapes/shapes_collision_area \
547549 shapes/shapes_colors_palette \
550+ shapes/shapes_dashed_line \
548551 shapes/shapes_digital_clock \
549552 shapes/shapes_double_pendulum \
550553 shapes/shapes_easings_ball \
551554 shapes/shapes_easings_box \
552555 shapes/shapes_easings_rectangles \
553556 shapes/shapes_following_eyes \
557+ shapes/shapes_kaleidoscope \
554558 shapes/shapes_lines_bezier \
555559 shapes/shapes_logo_raylib \
556560 shapes/shapes_logo_raylib_anim \
557561 shapes/shapes_rectangle_advanced \
558562 shapes/shapes_rectangle_scaling \
563+ shapes/shapes_recursive_tree \
559564 shapes/shapes_ring_drawing \
560565 shapes/shapes_rounded_rectangle_drawing \
561566 shapes/shapes_splines_drawing \
562567 shapes/shapes_top_down_lights \
563- shapes/shapes_dashed_line
568+ shapes/shapes_triangle_strip \
569+ shapes/shapes_vector_angle
564570
565571TEXTURES = \
566572 textures/textures_background_scrolling \
@@ -634,6 +640,7 @@ MODELS = \
634640 models/models_yaw_pitch_roll
635641
636642SHADERS = \
643+ shaders/shaders_ascii_rendering \
637644 shaders/shaders_basic_lighting \
638645 shaders/shaders_basic_pbr \
639646 shaders/shaders_custom_uniform \
@@ -731,6 +738,9 @@ core/core_custom_frame_control: core/core_custom_frame_control.c
731738core/core_custom_logging: core/core_custom_logging.c
732739 $(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM)
733740
741+ core/core_delta_time: core/core_delta_time.c
742+ $(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM)
743+
734744core/core_drop_files: core/core_drop_files.c
735745 $(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM)
736746
@@ -766,6 +776,9 @@ core/core_input_multitouch: core/core_input_multitouch.c
766776core/core_input_virtual_controls: core/core_input_virtual_controls.c
767777 $(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM)
768778
779+ core/core_monitor_change: core/core_monitor_change.c
780+ $(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM)
781+
769782core/core_random_sequence: core/core_random_sequence.c
770783 $(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM)
771784
@@ -822,6 +835,9 @@ shapes/shapes_collision_area: shapes/shapes_collision_area.c
822835shapes/shapes_colors_palette: shapes/shapes_colors_palette.c
823836 $(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM)
824837
838+ shapes/shapes_dashed_line: shapes/shapes_dashed_line.c
839+ $(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM)
840+
825841shapes/shapes_digital_clock: shapes/shapes_digital_clock.c
826842 $(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM)
827843
@@ -840,6 +856,9 @@ shapes/shapes_easings_rectangles: shapes/shapes_easings_rectangles.c
840856shapes/shapes_following_eyes: shapes/shapes_following_eyes.c
841857 $(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM)
842858
859+ shapes/shapes_kaleidoscope: shapes/shapes_kaleidoscope.c
860+ $(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM)
861+
843862shapes/shapes_lines_bezier: shapes/shapes_lines_bezier.c
844863 $(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM)
845864
@@ -855,6 +874,9 @@ shapes/shapes_rectangle_advanced: shapes/shapes_rectangle_advanced.c
855874shapes/shapes_rectangle_scaling: shapes/shapes_rectangle_scaling.c
856875 $(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM)
857876
877+ shapes/shapes_recursive_tree: shapes/shapes_recursive_tree.c
878+ $(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM)
879+
858880shapes/shapes_ring_drawing: shapes/shapes_ring_drawing.c
859881 $(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM)
860882
@@ -867,6 +889,12 @@ shapes/shapes_splines_drawing: shapes/shapes_splines_drawing.c
867889shapes/shapes_top_down_lights: shapes/shapes_top_down_lights.c
868890 $(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM)
869891
892+ shapes/shapes_triangle_strip: shapes/shapes_triangle_strip.c
893+ $(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM)
894+
895+ shapes/shapes_vector_angle: shapes/shapes_vector_angle.c
896+ $(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM)
897+
870898# Compile TEXTURES examples
871899textures/textures_background_scrolling: textures/textures_background_scrolling.c
872900 $(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM) \
@@ -1158,6 +1186,12 @@ models/models_yaw_pitch_roll: models/models_yaw_pitch_roll.c
11581186 --preload-file models/resources/models/obj/plane_diffuse.png@resources/models/obj/plane_diffuse.png
11591187
11601188# Compile SHADERS examples
1189+ shaders/shaders_ascii_rendering: shaders/shaders_ascii_rendering.c
1190+ $(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM) \
1191+ --preload-file shaders/resources/fudesumi.png@resources/fudesumi.png \
1192+ --preload-file shaders/resources/raysan.png@resources/raysan.png \
1193+ --preload-file shaders/resources/shaders/glsl100/ascii.fs@resources/shaders/glsl100/ascii.fs
1194+
11611195shaders/shaders_basic_lighting: shaders/shaders_basic_lighting.c
11621196 $(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM) \
11631197 --preload-file shaders/resources/shaders/glsl100/lighting.vs@resources/shaders/glsl100/lighting.vs \
0 commit comments