2005-07-07 04:39:45 +02:00
|
|
|
# Copyright (C) 1995,1996,1997,2001,2002,2005 Free Software Foundation, Inc.
|
1995-09-26 21:59:38 +01:00
|
|
|
# This file is part of the GNU C Library.
|
|
|
|
|
|
|
|
# The GNU C Library is free software; you can redistribute it and/or
|
2001-07-06 06:58:11 +02:00
|
|
|
# modify it under the terms of the GNU Lesser General Public
|
|
|
|
# License as published by the Free Software Foundation; either
|
|
|
|
# version 2.1 of the License, or (at your option) any later version.
|
1995-09-26 21:59:38 +01:00
|
|
|
|
|
|
|
# The GNU C Library is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2001-07-06 06:58:11 +02:00
|
|
|
# Lesser General Public License for more details.
|
1995-09-26 21:59:38 +01:00
|
|
|
|
2001-07-06 06:58:11 +02:00
|
|
|
# You should have received a copy of the GNU Lesser General Public
|
|
|
|
# License along with the GNU C Library; if not, write to the Free
|
|
|
|
# Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
|
|
|
# 02111-1307 USA.
|
1995-09-26 21:59:38 +01:00
|
|
|
|
|
|
|
#
|
|
|
|
# Sub-makefile for gmon portion of the library.
|
|
|
|
#
|
|
|
|
subdir := gmon
|
|
|
|
|
2001-03-27 08:01:17 +02:00
|
|
|
headers := sys/gmon.h sys/gmon_out.h sys/profil.h
|
1996-06-07 22:37:41 +02:00
|
|
|
distribute := machine-gmon.h profil-counter.h
|
2001-03-21 21:15:55 +01:00
|
|
|
routines := gmon mcount profil sprofil bb_init_func bb_exit_func prof-freq
|
|
|
|
|
2002-03-11 11:26:47 +01:00
|
|
|
elide-routines.os = bb_init_func bb_exit_func
|
|
|
|
|
2005-07-07 04:39:45 +02:00
|
|
|
include ../Makeconfig
|
|
|
|
|
|
|
|
tests = tst-sprofil
|
|
|
|
ifeq ($(build-profile),yes)
|
|
|
|
tests += tst-profile-static
|
|
|
|
tests-static += tst-profile-static
|
|
|
|
|
|
|
|
LDFLAGS-tst-profile-static = -profile
|
|
|
|
endif
|
1995-09-26 21:59:38 +01:00
|
|
|
|
1996-01-17 03:11:06 +01:00
|
|
|
# The mcount code won't work without a frame pointer.
|
|
|
|
CFLAGS-mcount.c := -fno-omit-frame-pointer
|
|
|
|
|
2004-10-07 00:09:35 +02:00
|
|
|
include ../Rules
|
|
|
|
|
1996-01-17 03:11:06 +01:00
|
|
|
# We cannot compile mcount.c with -pg because that would
|
1996-12-20 02:39:50 +01:00
|
|
|
# create recursive calls. Just copy the normal static object.
|
1996-02-27 01:55:03 +01:00
|
|
|
# On systems where `profil' is not a system call, the same
|
|
|
|
# problem exists for the internal functions in profil.c.
|
|
|
|
|
|
|
|
noprof := mcount
|
|
|
|
ifeq (,$(filter profil,$(unix-syscalls)))
|
2001-03-21 21:15:55 +01:00
|
|
|
noprof += profil sprofil
|
1996-02-27 01:55:03 +01:00
|
|
|
endif
|
|
|
|
|
1997-08-20 05:53:21 +02:00
|
|
|
$(noprof:%=$(objpfx)%.op): %.op: %.o
|
1996-01-17 03:11:06 +01:00
|
|
|
rm -f $@
|
|
|
|
ln $< $@
|