public inbox for glibc-cvs@sourceware.org
help / color / mirror / Atom feed
* [glibc] gmon: Reformat Makefile.
@ 2024-02-25 18:42 Carlos O'Donell
  0 siblings, 0 replies; only message in thread
From: Carlos O'Donell @ 2024-02-25 18:42 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=5273dd98123f9f129ad735680974f6ed5a035efd

commit 5273dd98123f9f129ad735680974f6ed5a035efd
Author: Carlos O'Donell <carlos@redhat.com>
Date:   Thu Jun 8 07:58:00 2023 -0400

    gmon: Reformat Makefile.
    
    Reflow and sort Makefile.
    
    Code generation changes present due to link order changes.
    
    No regressions on x86_64 and i686.

Diff:
---
 gmon/Makefile | 27 +++++++++++++++++++++------
 1 file changed, 21 insertions(+), 6 deletions(-)

diff --git a/gmon/Makefile b/gmon/Makefile
index 4e1a4a309c..db19c205d1 100644
--- a/gmon/Makefile
+++ b/gmon/Makefile
@@ -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

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2024-02-25 18:42 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-02-25 18:42 [glibc] gmon: Reformat Makefile Carlos O'Donell

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).