Sort lists in Makefile - libgrapheme - unicode string library
 (HTM) git clone git://git.suckless.org/libgrapheme
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit d8dc4bad69ff4006dca1309a194b6cf17f425ce5
 (DIR) parent 5b5c8e0a8390f87bcaa8c28dadaa625cede42690
 (HTM) Author: Laslo Hunhold <dev@frign.de>
       Date:   Wed,  7 Sep 2022 22:30:02 +0200
       
       Sort lists in Makefile
       
       Signed-off-by: Laslo Hunhold <dev@frign.de>
       
       Diffstat:
         M Makefile                            |      20 ++++++++++----------
       
       1 file changed, 10 insertions(+), 10 deletions(-)
       ---
 (DIR) diff --git a/Makefile b/Makefile
       @@ -68,6 +68,12 @@ MAN3 =\
                man/grapheme_decode_utf8\
                man/grapheme_encode_utf8\
                man/grapheme_is_character_break\
       +        man/grapheme_is_uppercase\
       +        man/grapheme_is_uppercase_utf8\
       +        man/grapheme_is_lowercase\
       +        man/grapheme_is_lowercase_utf8\
       +        man/grapheme_is_titlecase\
       +        man/grapheme_is_titlecase_utf8\
                man/grapheme_next_character_break\
                man/grapheme_next_line_break\
                man/grapheme_next_sentence_break\
       @@ -77,17 +83,11 @@ MAN3 =\
                man/grapheme_next_sentence_break_utf8\
                man/grapheme_next_word_break_utf8\
                man/grapheme_to_uppercase\
       -        man/grapheme_to_lowercase\
       -        man/grapheme_to_titlecase\
                man/grapheme_to_uppercase_utf8\
       +        man/grapheme_to_lowercase\
                man/grapheme_to_lowercase_utf8\
       +        man/grapheme_to_titlecase\
                man/grapheme_to_titlecase_utf8\
       -        man/grapheme_is_uppercase\
       -        man/grapheme_is_lowercase\
       -        man/grapheme_is_titlecase\
       -        man/grapheme_is_uppercase_utf8\
       -        man/grapheme_is_lowercase_utf8\
       -        man/grapheme_is_titlecase_utf8\
        
        MAN7 =\
                man/libgrapheme\
       @@ -202,10 +202,10 @@ gen/word-test.h: data/WordBreakTest.txt gen/word-test
        
        man/grapheme_is_character_break.3: man/grapheme_is_character_break.sh config.mk
        man/grapheme_is_uppercase.3: man/grapheme_is_uppercase.sh man/template/is_case.sh config.mk
       -man/grapheme_is_lowercase.3: man/grapheme_is_lowercase.sh man/template/is_case.sh config.mk
       -man/grapheme_is_titlecase.3: man/grapheme_is_titlecase.sh man/template/is_case.sh config.mk
        man/grapheme_is_uppercase_utf8.3: man/grapheme_is_uppercase_utf8.sh man/template/is_case.sh config.mk
       +man/grapheme_is_lowercase.3: man/grapheme_is_lowercase.sh man/template/is_case.sh config.mk
        man/grapheme_is_lowercase_utf8.3: man/grapheme_is_lowercase_utf8.sh man/template/is_case.sh config.mk
       +man/grapheme_is_titlecase.3: man/grapheme_is_titlecase.sh man/template/is_case.sh config.mk
        man/grapheme_is_titlecase_utf8.3: man/grapheme_is_titlecase_utf8.sh man/template/is_case.sh config.mk
        man/grapheme_next_character_break.3: man/grapheme_next_character_break.sh man/template/next_break.sh config.mk
        man/grapheme_next_line_break.3: man/grapheme_next_line_break.sh man/template/next_break.sh config.mk