]> sourceware.org Git - glibc.git/commitdiff
argp: Reformat Makefile.
authorCarlos O'Donell <carlos@redhat.com>
Tue, 16 May 2023 15:59:25 +0000 (11:59 -0400)
committerCarlos O'Donell <carlos@redhat.com>
Wed, 17 May 2023 12:12:08 +0000 (08:12 -0400)
Reflow Makefile.
Sort using scripts/sort-makefile-lines.py.

Code generation is changed as routines are linked in sorted order
as expected.

No regressions on x86_64 and i686.

argp/Makefile

index 26a6e429d72b13fccca5d28eca76ceca320064d6..9af11a6b7be116acb2c68b3e64a69d97e197b3c0 100644 (file)
@@ -22,12 +22,30 @@ subdir      := argp
 
 include ../Makeconfig
 
-headers                = argp.h bits/argp-ldbl.h
-routines       = $(addprefix argp-, ba fmtstream fs-xinl help parse pv \
-                                    pvh xinl eexst)
-
-tests          = argp-test tst-argp1 bug-argp1 tst-argp2 bug-argp2 \
-                 tst-ldbl-argp
+headers        = \
+  argp.h \
+  bits/argp-ldbl.h \
+  # headers
+routines = \
+  argp-ba \
+  argp-eexst \
+  argp-fmtstream \
+  argp-fs-xinl \
+  argp-help \
+  argp-parse \
+  argp-pv \
+  argp-pvh \
+  argp-xinl \
+  # routines
+
+tests = \
+  argp-test \
+  bug-argp1 \
+  bug-argp2 \
+  tst-argp1 \
+  tst-argp2 \
+  tst-ldbl-argp \
+  # tests
 
 CFLAGS-argp-help.c += $(uses-callbacks) -fexceptions $(config-cflags-wno-ignored-attributes)
 CFLAGS-argp-parse.c += $(uses-callbacks) $(config-cflags-wno-ignored-attributes)
This page took 0.048113 seconds and 5 git commands to generate.