mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-08 06:10:06 +00:00
gmon: Reformat Makefile.
Reflow and sort Makefile. Code generation changes present due to link order changes. No regressions on x86_64 and i686.
This commit is contained in:
parent
c432e667fc
commit
5273dd9812
@ -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
|
||||
headers := \
|
||||
sys/gmon.h \
|
||||
sys/gmon_out.h \
|
||||
sys/profil.h \
|
||||
# headers
|
||||
routines := \
|
||||
gmon \
|
||||
mcount \
|
||||
prof-freq \
|
||||
profil \
|
||||
sprofil \
|
||||
# routines
|
||||
|
||||
tests = tst-sprofil tst-gmon tst-mcount-overflow tst-mcleanup
|
||||
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
|
||||
|
Loading…
Reference in New Issue
Block a user