@@ -525,7 +525,6 @@ CORE = \
525525 core/core_input_mouse_wheel \
526526 core/core_input_multitouch \
527527 core/core_input_virtual_controls \
528- core/core_loading_thread \
529528 core/core_random_sequence \
530529 core/core_random_values \
531530 core/core_scissor_test \
@@ -563,7 +562,6 @@ TEXTURES = \
563562 textures/textures_background_scrolling \
564563 textures/textures_blend_modes \
565564 textures/textures_bunnymark \
566- textures/textures_tiled_drawing \
567565 textures/textures_fog_of_war \
568566 textures/textures_gif_player \
569567 textures/textures_image_channel \
@@ -585,19 +583,20 @@ TEXTURES = \
585583 textures/textures_sprite_explosion \
586584 textures/textures_srcrec_dstrec \
587585 textures/textures_textured_curve \
586+ textures/textures_tiled_drawing \
588587 textures/textures_to_image
589588
590589TEXT = \
591- text/text_codepoints_loading \
592590 text/text_3d_drawing \
591+ text/text_codepoints_loading \
593592 text/text_font_filters \
594593 text/text_font_loading \
595594 text/text_font_sdf \
596595 text/text_font_spritefont \
597596 text/text_format_text \
598597 text/text_input_box \
599- text/text_sprite_fonts \
600598 text/text_rectangle_bounds \
599+ text/text_sprite_fonts \
601600 text/text_unicode_emojis \
602601 text/text_unicode_ranges \
603602 text/text_writing_anim
@@ -760,9 +759,6 @@ core/core_input_multitouch: core/core_input_multitouch.c
760759core/core_input_virtual_controls: core/core_input_virtual_controls.c
761760 $(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM)
762761
763- core/core_loading_thread: core/core_loading_thread.c
764- $(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM)
765-
766762core/core_random_sequence: core/core_random_sequence.c
767763 $(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM)
768764
@@ -871,10 +867,6 @@ textures/textures_bunnymark: textures/textures_bunnymark.c
871867 $(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM) \
872868 --preload-file textures/resources/wabbit_alpha.png@resources/wabbit_alpha.png
873869
874- textures/textures_tiled_drawing: textures/textures_tiled_drawing.c
875- $(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM) \
876- --preload-file textures/resources/patterns.png@resources/patterns.png
877-
878870textures/textures_fog_of_war: textures/textures_fog_of_war.c
879871 $(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM)
880872
@@ -961,19 +953,23 @@ textures/textures_textured_curve: textures/textures_textured_curve.c
961953 $(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM) \
962954 --preload-file textures/resources/road.png@resources/road.png
963955
956+ textures/textures_tiled_drawing: textures/textures_tiled_drawing.c
957+ $(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM) \
958+ --preload-file textures/resources/patterns.png@resources/patterns.png
959+
964960textures/textures_to_image: textures/textures_to_image.c
965961 $(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM) \
966962 --preload-file textures/resources/raylib_logo.png@resources/raylib_logo.png
967963
968964# Compile TEXT examples
969- text/text_codepoints_loading: text/text_codepoints_loading.c
970- $(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM) \
971- --preload-file text/resources/DotGothic16-Regular.ttf@resources/DotGothic16-Regular.ttf
972-
973965text/text_3d_drawing: text/text_3d_drawing.c
974966 $(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM) \
975967 --preload-file text/resources/shaders/glsl100/alpha_discard.fs@resources/shaders/glsl100/alpha_discard.fs
976968
969+ text/text_codepoints_loading: text/text_codepoints_loading.c
970+ $(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM) \
971+ --preload-file text/resources/DotGothic16-Regular.ttf@resources/DotGothic16-Regular.ttf
972+
977973text/text_font_filters: text/text_font_filters.c
978974 $(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM) \
979975 --preload-file text/resources/KAISG.ttf@resources/KAISG.ttf
@@ -998,6 +994,9 @@ text/text_format_text: text/text_format_text.c
998994text/text_input_box: text/text_input_box.c
999995 $(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM)
1000996
997+ text/text_rectangle_bounds: text/text_rectangle_bounds.c
998+ $(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM)
999+
10011000text/text_sprite_fonts: text/text_sprite_fonts.c
10021001 $(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM) \
10031002 --preload-file text/resources/sprite_fonts/alagard.png@resources/sprite_fonts/alagard.png \
@@ -1009,9 +1008,6 @@ text/text_sprite_fonts: text/text_sprite_fonts.c
10091008 --preload-file text/resources/sprite_fonts/alpha_beta.png@resources/sprite_fonts/alpha_beta.png \
10101009 --preload-file text/resources/sprite_fonts/jupiter_crash.png@resources/sprite_fonts/jupiter_crash.png
10111010
1012- text/text_rectangle_bounds: text/text_rectangle_bounds.c
1013- $(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM)
1014-
10151011text/text_unicode_emojis: text/text_unicode_emojis.c
10161012 $(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM) \
10171013 --preload-file text/resources/dejavu.fnt@resources/dejavu.fnt \
0 commit comments