* stdio-common/vfprintf.c (vfprintf): Also set `is_long' if the
[glibc.git] / malloc / Makefile
blob7cec63dde4a1a344511242d33990928f033b6bea
1 # Copyright (C) 1991-1999, 2000 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 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.
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.
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.
20 # Makefile for malloc routines
22 subdir := malloc
24 all:
26 dist-headers := malloc.h
27 headers := $(dist-headers) obstack.h mcheck.h
28 tests := mallocbug tst-malloc tst-valloc tst-calloc
29 test-srcs = tst-mtrace
31 distribute = thread-m.h mtrace.pl mcheck-init.c stackinfo.h memusage.h \
32 memusage.sh memusagestat.c tst-mtrace.sh
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
40 install-lib := libmcheck.a
41 non-lib.a := libmcheck.a
43 # Additional library.
44 extra-libs = libmemusage
45 extra-libs-others = $(extra-libs)
47 libmemusage-routines = memusage
48 libmemusage-inhibit-o = $(filter-out .os,$(object-suffixes))
50 # These should be removed by `make clean'.
51 extra-objs = mcheck-init.o libmcheck.a
53 # Include the cleanup handler.
54 aux := set-freeres
56 include ../Makeconfig
58 # The AWK script to analyze the output of the mtrace functions.
59 ifneq ($(PERL),no)
60 install-bin = mtrace
61 generated = mtrace
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
72 # If the gd library is available we build the `memusagestat' program.
73 ifneq ($(LIBGD),no)
74 install-bin += memusagestat memusage
75 endif
77 # Another goal which can be used to override the configure decision.
78 .PHONY: do-memusagestat
79 do-memusagestat: $(objpfx)memusagestat
81 memusagestat-modules = memusagestat
82 $(objpfx)memusagestat: $(memusagestat-modules:%=$(objpfx)%.o)
83 $(LINK.o) -o $@ $^ $(libgd-LDFLAGS) -lgd -lpng -lz -lm
85 include ../Rules
87 $(objpfx)libmcheck.a: $(objpfx)mcheck-init.o
88 -rm -f $@
89 $(patsubst %/,cd % &&,$(objpfx)) \
90 $(LN_S) $(<F) $(@F)
92 lib: $(objpfx)libmcheck.a
94 ifeq (yes,$(build-shared))
95 tests: $(objpfx)tst-mtrace.out
96 $(objpfx)tst-mtrace.out: tst-mtrace.sh $(objpfx)tst-mtrace
97 $(SHELL) -e $< $(common-objpfx)
98 endif
100 # Uncomment this for test releases. For public releases it is too expensive.
101 #CPPFLAGS-malloc.o += -DMALLOC_DEBUG
103 $(objpfx)mtrace: mtrace.pl
104 rm -f $@.new
105 sed -e 's|@PERL@|$(PERL)|' -e 's|@XXX@|$(address-width)|' \
106 -e 's|@VERSION@|$(version)|' $^ > $@.new \
107 && rm -f $@ && mv $@.new $@ && chmod +x $@
109 $(objpfx)memusage: memusage.sh
110 rm -f $@.new
111 sed -e 's|@BASH@|$(BASH)|' -e 's|@VERSION@|$(version)|' \
112 -e 's|@LIBDIR@|$(libdir)|' -e 's|@BINDIR@|$(bindir)|' $^ > $@.new \
113 && rm -f $@ && mv $@.new $@ && chmod +x $@
116 # The implementation uses `dlsym'
117 $(objpfx)libmemusage.so: $(common-objpfx)dlfcn/libdl.so