[COMMITTED,03/10] ctype: Reformat Makefile.

Message ID 20240225183956.2534939-3-carlos@redhat.com
State Committed
Commit 12956e0a330e3d90fc196f7d7a047ce613f78920
Headers
Series [COMMITTED,01/10] conform: Reformat Makefile. |

Commit Message

Carlos O'Donell Feb. 25, 2024, 6:39 p.m. UTC
  Reflow and sort Makefile.

Code generation changes present due to link order changes.

No regressions on x86_64 and i686.
---
 ctype/Makefile | 17 +++++++++++++----
 1 file changed, 13 insertions(+), 4 deletions(-)
  

Patch

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