From 12956e0a330e3d90fc196f7d7a047ce613f78920 Mon Sep 17 00:00:00 2001 From: Carlos O'Donell Date: Thu, 8 Jun 2023 06:43:44 -0400 Subject: [PATCH] ctype: Reformat Makefile. 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(-) 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 -- 2.11.4.GIT