about summary refs log tree commit diff
diff options
context:
space:
mode:
authorCarlos O'Donell <carlos@redhat.com>2023-05-18 12:56:45 -0400
committerCarlos O'Donell <carlos@redhat.com>2023-05-18 12:56:45 -0400
commitebd928224a138d4560dc0be3ef162162d62a9e43 (patch)
tree1b54e8aa58f06efd6c593e45307323e87882b10c
parentb600f47758332d78f04daa970b02a4044a37ebd9 (diff)
downloadglibc-ebd928224a138d4560dc0be3ef162162d62a9e43.tar.gz
glibc-ebd928224a138d4560dc0be3ef162162d62a9e43.tar.xz
glibc-ebd928224a138d4560dc0be3ef162162d62a9e43.zip
assert: Reformat Makefile.
Reflow all long lines adding comment terminators.
Sort all reflowed text using scripts/sort-makefile-lines.py.

No code generation changes observed in binary artifacts.
No regressions on x86_64 and i686.
-rw-r--r--assert/Makefile17
1 files changed, 14 insertions, 3 deletions
diff --git a/assert/Makefile b/assert/Makefile
index e41022cd37..67f4e6a570 100644
--- a/assert/Makefile
+++ b/assert/Makefile
@@ -22,7 +22,9 @@ subdir	:= assert
 
 include ../Makeconfig
 
-headers	:= assert.h
+headers := \
+  assert.h
+  # headers
 
 routines := \
   __assert \
@@ -30,7 +32,13 @@ routines := \
   assert \
   assert-perr \
   # routines
-tests := test-assert test-assert-perr tst-assert-c++ tst-assert-g++
+
+tests := \
+  test-assert \
+  test-assert-perr \
+  tst-assert-c++ \
+  tst-assert-g++ \
+  # tests
 
 ifeq ($(have-cxx-thread_local),yes)
 CFLAGS-tst-assert-c++.o = -std=c++11
@@ -38,7 +46,10 @@ LDLIBS-tst-assert-c++ = -lstdc++
 CFLAGS-tst-assert-g++.o = -std=gnu++11
 LDLIBS-tst-assert-g++ = -lstdc++
 else
-tests-unsupported += tst-assert-c++ tst-assert-g++
+tests-unsupported += \
+  tst-assert-c++ \
+  tst-assert-g++ \
+  # tests-unsupported
 endif
 
 include ../Rules