1 # Copyright (C) 1991-1999, 2000, 2001, 2002 Free Software Foundation, Inc.
2 # This file is part of the GNU C Library.
4 # The GNU C Library is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU Lesser General Public
6 # License as published by the Free Software Foundation; either
7 # version 2.1 of the License, or (at your option) any later version.
9 # The GNU C Library is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 # Lesser General Public License for more details.
14 # You should have received a copy of the GNU Lesser General Public
15 # License along with the GNU C Library; if not, write to the Free
16 # Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
20 # Makefile for malloc routines
26 dist-headers
:= malloc.h
27 headers
:= $(dist-headers
) obstack.h mcheck.h
28 tests
:= mallocbug tst-malloc tst-valloc tst-calloc tst-obstack \
30 test-srcs
= tst-mtrace
32 distribute
= thread-m.h mtrace.pl mcheck-init.c stackinfo.h memusage.h \
33 memusage.sh memusagestat.c tst-mtrace.sh arena.c hooks.c
35 # Things which get pasted together into gmalloc.c.
36 gmalloc-routines
:= malloc morecore
37 # Things to include in the standalone distribution.
38 dist-routines
= $(gmalloc-routines
) mcheck mtrace
39 routines
= $(dist-routines
) obstack
41 install-lib
:= libmcheck.a
42 non-lib.a
:= libmcheck.a
45 extra-libs
= libmemusage
46 extra-libs-others
= $(extra-libs
)
48 libmemusage-routines
= memusage
49 libmemusage-inhibit-o
= $(filter-out .os
,$(object-suffixes
))
51 # These should be removed by `make clean'.
52 extra-objs
= mcheck-init.o libmcheck.a
54 # Include the cleanup handler.
59 CPPFLAGS-memusagestat
= -DNOT_IN_libc
61 # The Perl script to analyze the output of the mtrace functions.
63 install-bin-script
= mtrace
66 # The Perl script will print addresses and to do this nicely we must know
67 # whether we are on a 32 or 64 bit machine.
68 ifneq ($(findstring wordsize-32
,$(config-sysdirs
)),)
75 # Unless we get a test for the availability of libgd which also works
76 # for cross-compiling we disable the memusagestat generation in this
78 ifneq ($(cross-compiling
),yes
)
79 # If the gd library is available we build the `memusagestat' program.
81 install-bin
= memusagestat memusage
82 generated
+= memusagestat memusage
83 extra-objs
+= memusagestat.o
85 # The configure.in check for libgd and its headers did not use $SYSINCLUDES.
86 # The directory specified by --with-headers usually contains only the basic
87 # kernel interface headers, not something like libgd. So the simplest thing
88 # is to presume that the standard system headers will be ok for this file.
89 $(objpfx
)memusagestat.o
: sysincludes
= # nothing
93 # Another goal which can be used to override the configure decision.
94 .PHONY
: do-memusagestat
95 do-memusagestat
: $(objpfx
)memusagestat
97 memusagestat-modules
= memusagestat
98 $(objpfx
)memusagestat
: $(memusagestat-modules
:%=$(objpfx
)%.o
)
99 $(LINK.o
) -o
$@
$^
$(libgd-LDFLAGS
) -lgd
-lpng
-lz
-lm
103 $(objpfx
)libmcheck.a
: $(objpfx
)mcheck-init.o
105 $(patsubst %/,cd
% &&,$(objpfx
)) \
108 lib
: $(objpfx
)libmcheck.a
110 ifeq (no
,$(cross-compiling
))
111 ifeq (yes
,$(build-shared
))
113 tests
: $(objpfx
)tst-mtrace.out
114 $(objpfx
)tst-mtrace.out
: tst-mtrace.sh
$(objpfx
)tst-mtrace
115 $(SHELL
) -e
$< $(common-objpfx
)
120 # Uncomment this for test releases. For public releases it is too expensive.
121 #CPPFLAGS-malloc.o += -DMALLOC_DEBUG=1
123 $(objpfx
)mtrace
: mtrace.pl
125 sed
-e
's|@PERL@|$(PERL)|' -e
's|@XXX@|$(address-width)|' \
126 -e
's|@VERSION@|$(version)|' $^
> $@.new \
127 && rm -f
$@
&& mv
$@.new
$@
&& chmod
+x
$@
129 $(objpfx
)memusage
: memusage.sh
131 sed
-e
's|@BASH@|$(BASH)|' -e
's|@VERSION@|$(version)|' \
132 -e
's|@SLIBDIR@|$(slibdir)|' -e
's|@BINDIR@|$(bindir)|' $^
> $@.new \
133 && rm -f
$@
&& mv
$@.new
$@
&& chmod
+x
$@
136 # The implementation uses `dlsym'
137 $(objpfx
)libmemusage.so
: $(common-objpfx
)dlfcn
/libdl.so
140 $(foreach o
,$(all-object-suffixes
),$(objpfx
)malloc
$(o
)): arena.c hooks.c