assert: Reformat Makefile.
authorCarlos O'Donell <carlos@redhat.com>
Thu, 18 May 2023 16:56:45 +0000 (12:56 -0400)
committerCarlos O'Donell <carlos@redhat.com>
Thu, 18 May 2023 16:56:45 +0000 (12:56 -0400)
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.

assert/Makefile

index e41022cd37214169262dea0bdc552e0c40455fcb..67f4e6a5700ece0ada308bda5610b5f8c7d1c433 100644 (file)
@@ -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