diff options
author | Ulrich Drepper <drepper@redhat.com> | 2001-03-21 20:15:55 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2001-03-21 20:15:55 +0000 |
commit | 4c48b26742941a29b9e608f234ec8186c5fcdc8e (patch) | |
tree | fc3faf57effedc92f97f6eef62e803d595cd7c2b /gmon/Makefile | |
parent | cf4431ed2d72b47bbc36f9656b60b978d29a9dec (diff) | |
download | glibc-4c48b26742941a29b9e608f234ec8186c5fcdc8e.tar glibc-4c48b26742941a29b9e608f234ec8186c5fcdc8e.tar.gz glibc-4c48b26742941a29b9e608f234ec8186c5fcdc8e.tar.bz2 glibc-4c48b26742941a29b9e608f234ec8186c5fcdc8e.zip |
Update.
2001-03-21 Ulrich Drepper <drepper@redhat.com>
* gmon/Makefile (routines): Add sprofil.
(tests): Add tst-sprofil.
(noprof): Add sprofil.
* gmon/Versions [libc] (GLIBC_2.2.3): Add sprofil.
2001-03-20 David Mosberger <davidm@hpl.hp.com>
* sysdeps/generic/sprofil.c: New file.
* sysdeps/posix/sprofil.c: New file.
* gmon/tst-sprofil.c: New file.
* gmon/sys/profil.h: New file.
Diffstat (limited to 'gmon/Makefile')
-rw-r--r-- | gmon/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gmon/Makefile b/gmon/Makefile index a07fe731eb..48f367fce9 100644 --- a/gmon/Makefile +++ b/gmon/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc. +# Copyright (C) 1995, 1996, 1997, 2001 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or @@ -23,7 +23,9 @@ subdir := gmon headers := sys/gmon.h sys/gmon_out.h distribute := machine-gmon.h profil-counter.h -routines := gmon mcount profil bb_init_func bb_exit_func prof-freq +routines := gmon mcount profil sprofil bb_init_func bb_exit_func prof-freq + +tests := tst-sprofil include ../Rules @@ -37,7 +39,7 @@ CFLAGS-mcount.c := -fno-omit-frame-pointer noprof := mcount ifeq (,$(filter profil,$(unix-syscalls))) -noprof += profil +noprof += profil sprofil endif $(noprof:%=$(objpfx)%.op): %.op: %.o |