Browse Source

gmon: Reformat Makefile.

Reflow and sort Makefile.

Code generation changes present due to link order changes.

No regressions on x86_64 and i686.
master
Carlos O'Donell 3 years ago
parent
commit
5273dd9812
  1. 23
      gmon/Makefile

23
gmon/Makefile

@ -23,10 +23,25 @@ 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

Loading…
Cancel
Save