@@ -525,7 +525,6 @@ CORE = \
525
525
core/core_input_mouse_wheel \
526
526
core/core_input_multitouch \
527
527
core/core_input_virtual_controls \
528
- core/core_loading_thread \
529
528
core/core_random_sequence \
530
529
core/core_random_values \
531
530
core/core_scissor_test \
@@ -563,7 +562,6 @@ TEXTURES = \
563
562
textures/textures_background_scrolling \
564
563
textures/textures_blend_modes \
565
564
textures/textures_bunnymark \
566
- textures/textures_tiled_drawing \
567
565
textures/textures_fog_of_war \
568
566
textures/textures_gif_player \
569
567
textures/textures_image_channel \
@@ -585,19 +583,20 @@ TEXTURES = \
585
583
textures/textures_sprite_explosion \
586
584
textures/textures_srcrec_dstrec \
587
585
textures/textures_textured_curve \
586
+ textures/textures_tiled_drawing \
588
587
textures/textures_to_image
589
588
590
589
TEXT = \
591
- text/text_codepoints_loading \
592
590
text/text_3d_drawing \
591
+ text/text_codepoints_loading \
593
592
text/text_font_filters \
594
593
text/text_font_loading \
595
594
text/text_font_sdf \
596
595
text/text_font_spritefont \
597
596
text/text_format_text \
598
597
text/text_input_box \
599
- text/text_sprite_fonts \
600
598
text/text_rectangle_bounds \
599
+ text/text_sprite_fonts \
601
600
text/text_unicode_emojis \
602
601
text/text_unicode_ranges \
603
602
text/text_writing_anim
@@ -760,9 +759,6 @@ core/core_input_multitouch: core/core_input_multitouch.c
760
759
core/core_input_virtual_controls: core/core_input_virtual_controls.c
761
760
$(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM)
762
761
763
- core/core_loading_thread: core/core_loading_thread.c
764
- $(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM)
765
-
766
762
core/core_random_sequence: core/core_random_sequence.c
767
763
$(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM)
768
764
@@ -871,10 +867,6 @@ textures/textures_bunnymark: textures/textures_bunnymark.c
871
867
$(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM) \
872
868
--preload-file textures/resources/wabbit_alpha.png@resources/wabbit_alpha.png
873
869
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
-
878
870
textures/textures_fog_of_war: textures/textures_fog_of_war.c
879
871
$(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM)
880
872
@@ -961,19 +953,23 @@ textures/textures_textured_curve: textures/textures_textured_curve.c
961
953
$(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM) \
962
954
--preload-file textures/resources/road.png@resources/road.png
963
955
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
+
964
960
textures/textures_to_image: textures/textures_to_image.c
965
961
$(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM) \
966
962
--preload-file textures/resources/raylib_logo.png@resources/raylib_logo.png
967
963
968
964
# 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
-
973
965
text/text_3d_drawing: text/text_3d_drawing.c
974
966
$(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM) \
975
967
--preload-file text/resources/shaders/glsl100/alpha_discard.fs@resources/shaders/glsl100/alpha_discard.fs
976
968
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
+
977
973
text/text_font_filters: text/text_font_filters.c
978
974
$(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM) \
979
975
--preload-file text/resources/KAISG.ttf@resources/KAISG.ttf
@@ -998,6 +994,9 @@ text/text_format_text: text/text_format_text.c
998
994
text/text_input_box: text/text_input_box.c
999
995
$(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM)
1000
996
997
+ text/text_rectangle_bounds: text/text_rectangle_bounds.c
998
+ $(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM)
999
+
1001
1000
text/text_sprite_fonts: text/text_sprite_fonts.c
1002
1001
$(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM) \
1003
1002
--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
1009
1008
--preload-file text/resources/sprite_fonts/alpha_beta.png@resources/sprite_fonts/alpha_beta.png \
1010
1009
--preload-file text/resources/sprite_fonts/jupiter_crash.png@resources/sprite_fonts/jupiter_crash.png
1011
1010
1012
- text/text_rectangle_bounds: text/text_rectangle_bounds.c
1013
- $(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM)
1014
-
1015
1011
text/text_unicode_emojis: text/text_unicode_emojis.c
1016
1012
$(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM) \
1017
1013
--preload-file text/resources/dejavu.fnt@resources/dejavu.fnt \
0 commit comments