aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarlos O'Donell <carlos@redhat.com>2023-06-08 06:43:44 -0400
committerCarlos O'Donell <carlos@redhat.com>2024-02-25 13:38:16 -0500
commit12956e0a330e3d90fc196f7d7a047ce613f78920 (patch)
treed672aa13188288ef298683383dda2724dbb169a4
parentd88fcccb1a07d071d366d352e126c98c72380660 (diff)
downloadglibc-12956e0a330e3d90fc196f7d7a047ce613f78920.tar
glibc-12956e0a330e3d90fc196f7d7a047ce613f78920.tar.gz
glibc-12956e0a330e3d90fc196f7d7a047ce613f78920.tar.bz2
glibc-12956e0a330e3d90fc196f7d7a047ce613f78920.zip
ctype: Reformat Makefile.
Reflow and sort Makefile. Code generation changes present due to link order changes. No regressions on x86_64 and i686.
-rw-r--r--ctype/Makefile17
1 files changed, 13 insertions, 4 deletions
diff --git a/ctype/Makefile b/ctype/Makefile
index 717d020129..3e09938bd1 100644
--- a/ctype/Makefile
+++ b/ctype/Makefile
@@ -24,9 +24,18 @@ include ../Makeconfig
headers := ctype.h
-routines := ctype ctype-c99 ctype-extn ctype-c99_l ctype_l isctype
-aux := ctype-info
-
-tests := test_ctype
+routines := \
+ ctype \
+ ctype-c99 \
+ ctype-c99_l \
+ ctype-extn \
+ ctype_l \
+ isctype \
+ # routines
+aux := ctype-info
+
+tests := \
+ test_ctype \
+ # tests
include ../Rules