From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2191) id 49C583858C42; Sun, 25 Feb 2024 18:42:40 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 49C583858C42 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1708886563; bh=fwm44gq2pkQ64gMtyiQFVwQLk23kQ4lzvs36xkTvlmI=; h=From:To:Subject:Date:From; b=i69l3S+eAJ946ADlHtkpQu/g+4oYxCcGVeg4slNNeJXIyeiTkn2lprOYercZ74UG2 T3hvXc08TIxR4xtNaSbATbdTUxf+iG7ubTZAx2Zz9JWPF9u965WPlXdUjsh+txbWqh nVLotg8+AD8exctU9oKRmtyl1/D65Qy5/aKFm6qs= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Carlos O'Donell To: glibc-cvs@sourceware.org Subject: [glibc] gmon: Reformat Makefile. X-Act-Checkin: glibc X-Git-Author: Carlos O'Donell X-Git-Refname: refs/heads/master X-Git-Oldrev: c432e667fc10777fba5f7be38fe659e6c40f7da4 X-Git-Newrev: 5273dd98123f9f129ad735680974f6ed5a035efd Message-Id: <20240225184243.49C583858C42@sourceware.org> Date: Sun, 25 Feb 2024 18:42:40 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=5273dd98123f9f129ad735680974f6ed5a035efd commit 5273dd98123f9f129ad735680974f6ed5a035efd Author: Carlos O'Donell 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