Update.
[platform/upstream/linaro-glibc.git] / malloc / Makefile
1 # Copyright (C) 1991-1999, 2000 Free Software Foundation, Inc.
2 # This file is part of the GNU C Library.
3
4 # The GNU C Library is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU Library General Public License as
6 # published by the Free Software Foundation; either version 2 of the
7 # License, or (at your option) any later version.
8
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 # Library General Public License for more details.
13
14 # You should have received a copy of the GNU Library General Public
15 # License along with the GNU C Library; see the file COPYING.LIB.  If not,
16 # write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 # Boston, MA 02111-1307, USA.
18
19 #
20 #       Makefile for malloc routines
21 #
22 subdir  := malloc
23
24 all:
25
26 dist-headers := malloc.h
27 headers := $(dist-headers) obstack.h mcheck.h
28 tests := mallocbug tst-malloc tst-valloc tst-calloc tst-obstack
29 test-srcs = tst-mtrace
30
31 distribute = thread-m.h mtrace.pl mcheck-init.c stackinfo.h memusage.h \
32              memusage.sh memusagestat.c tst-mtrace.sh
33
34 # Things which get pasted together into gmalloc.c.
35 gmalloc-routines := malloc morecore
36 # Things to include in the standalone distribution.
37 dist-routines = $(gmalloc-routines) mcheck mtrace
38 routines = $(dist-routines) obstack
39
40 install-lib := libmcheck.a
41 non-lib.a := libmcheck.a
42
43 # Additional library.
44 extra-libs = libmemusage
45 extra-libs-others = $(extra-libs)
46
47 libmemusage-routines = memusage
48 libmemusage-inhibit-o = $(filter-out .os,$(object-suffixes))
49
50 # These should be removed by `make clean'.
51 extra-objs = mcheck-init.o libmcheck.a
52
53 # Include the cleanup handler.
54 aux := set-freeres
55
56 include ../Makeconfig
57
58 # The AWK script to analyze the output of the mtrace functions.
59 ifneq ($(PERL),no)
60 install-bin = mtrace
61 generated = mtrace
62
63 # The Perl script will print addresses and to do this nicely we must know
64 # whether we are on a 32 or 64 bit machine.
65 ifneq ($(findstring wordsize-32,$(config-sysdirs)),)
66 address-width=10
67 else
68 address-width=18
69 endif
70 endif
71
72 # If the gd library is available we build the `memusagestat' program.
73 ifneq ($(LIBGD),no)
74 install-bin += memusagestat memusage
75 generated += memusagestat memusage
76 extra-objs += memusagestat.o
77 endif
78
79 # Another goal which can be used to override the configure decision.
80 .PHONY: do-memusagestat
81 do-memusagestat: $(objpfx)memusagestat
82
83 memusagestat-modules = memusagestat
84 $(objpfx)memusagestat: $(memusagestat-modules:%=$(objpfx)%.o)
85         $(LINK.o) -o $@ $^ $(libgd-LDFLAGS) -lgd -lpng -lz -lm
86
87 include ../Rules
88
89 $(objpfx)libmcheck.a: $(objpfx)mcheck-init.o
90         -rm -f $@
91         $(patsubst %/,cd % &&,$(objpfx)) \
92         $(LN_S) $(<F) $(@F)
93
94 lib: $(objpfx)libmcheck.a
95
96 ifeq (no,$(cross-compiling))
97 ifeq (yes,$(build-shared))
98 tests: $(objpfx)tst-mtrace.out
99 $(objpfx)tst-mtrace.out: tst-mtrace.sh $(objpfx)tst-mtrace
100         $(SHELL) -e $< $(common-objpfx)
101 endif
102 endif
103
104 # Uncomment this for test releases.  For public releases it is too expensive.
105 #CPPFLAGS-malloc.o += -DMALLOC_DEBUG
106
107 $(objpfx)mtrace: mtrace.pl
108         rm -f $@.new
109         sed -e 's|@PERL@|$(PERL)|' -e 's|@XXX@|$(address-width)|' \
110             -e 's|@VERSION@|$(version)|' $^ > $@.new \
111         && rm -f $@ && mv $@.new $@ && chmod +x $@
112
113 $(objpfx)memusage: memusage.sh
114         rm -f $@.new
115         sed -e 's|@BASH@|$(BASH)|' -e 's|@VERSION@|$(version)|' \
116             -e 's|@LIBDIR@|$(slibdir)|' -e 's|@BINDIR@|$(bindir)|' $^ > $@.new \
117         && rm -f $@ && mv $@.new $@ && chmod +x $@
118
119
120 # The implementation uses `dlsym'
121 $(objpfx)libmemusage.so: $(common-objpfx)dlfcn/libdl.so