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 +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