]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
gmon: Reformat Makefile.
authorCarlos O'Donell <carlos@redhat.com>
Thu, 8 Jun 2023 11:58:00 +0000 (07:58 -0400)
committerCarlos O'Donell <carlos@redhat.com>
Sun, 25 Feb 2024 18:38:16 +0000 (13:38 -0500)
Reflow and sort Makefile.

Code generation changes present due to link order changes.

No regressions on x86_64 and i686.

gmon/Makefile

index 4e1a4a309cc06b683e15c2889cd8fd1c95936dcb..db19c205d121bed29b888cef54c90c52aaabd7df 100644 (file)
@@ -23,13 +23,28 @@ subdir      := gmon
 
 include ../Makeconfig
 
-headers        := sys/gmon.h sys/gmon_out.h sys/profil.h
-routines := gmon mcount profil sprofil prof-freq
-
-tests  = tst-sprofil tst-gmon tst-mcount-overflow tst-mcleanup
+headers := \
+  sys/gmon.h \
+  sys/gmon_out.h \
+  sys/profil.h \
+  # headers
+routines := \
+  gmon \
+  mcount \
+  prof-freq \
+  profil \
+  sprofil \
+  # routines
+
+tests = \
+  tst-gmon \
+  tst-mcleanup \
+  tst-mcount-overflow \
+  tst-sprofil \
+  # tests
 ifeq ($(build-profile),yes)
-tests  += tst-profile-static
-tests-static   += tst-profile-static
+tests += tst-profile-static
+tests-static += tst-profile-static
 
 LDFLAGS-tst-profile-static = -profile
 endif