Make common fmin implementation generic.
[glibc.git] / malloc / Makefile
blob037e830f318dd9ed161d4d2d318e2f6dbcbdd330
1 # Copyright (C) 1991-2016 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, see
16 # <http://www.gnu.org/licenses/>.
19 # Makefile for malloc routines
21 subdir := malloc
23 include ../Makeconfig
25 dist-headers := malloc.h
26 headers := $(dist-headers) obstack.h mcheck.h
27 tests := mallocbug tst-malloc tst-valloc tst-calloc tst-obstack \
28 tst-mallocstate tst-mcheck tst-mallocfork tst-trim1 \
29 tst-malloc-usable tst-realloc tst-posix_memalign \
30 tst-pvalloc tst-memalign tst-mallopt tst-scratch_buffer \
31 tst-malloc-backtrace tst-malloc-thread-exit \
32 tst-malloc-thread-fail tst-malloc-fork-deadlock \
33 tst-mallocfork2 \
34 tst-interpose-nothread \
35 tst-interpose-thread \
36 tst-interpose-static-nothread \
37 tst-interpose-static-thread \
39 tests-static := \
40 tst-interpose-static-nothread \
41 tst-interpose-static-thread \
43 test-srcs = tst-mtrace
45 routines = malloc morecore mcheck mtrace obstack \
46 scratch_buffer_grow scratch_buffer_grow_preserve \
47 scratch_buffer_set_array_size
49 install-lib := libmcheck.a
50 non-lib.a := libmcheck.a
52 # Additional library.
53 extra-libs = libmemusage
54 extra-libs-others = $(extra-libs)
56 # Helper objects for some tests.
57 extra-tests-objs += \
58 tst-interpose-aux-nothread.o \
59 tst-interpose-aux-thread.o \
61 test-extras = \
62 tst-interpose-aux-nothread \
63 tst-interpose-aux-thread \
65 libmemusage-routines = memusage
66 libmemusage-inhibit-o = $(filter-out .os,$(object-suffixes))
68 $(objpfx)tst-malloc-backtrace: $(shared-thread-library)
69 $(objpfx)tst-malloc-thread-exit: $(shared-thread-library)
70 $(objpfx)tst-malloc-thread-fail: $(shared-thread-library)
71 $(objpfx)tst-malloc-fork-deadlock: $(shared-thread-library)
73 # These should be removed by `make clean'.
74 extra-objs = mcheck-init.o libmcheck.a
76 # Include the cleanup handler.
77 aux := set-freeres thread-freeres
79 # The Perl script to analyze the output of the mtrace functions.
80 ifneq ($(PERL),no)
81 install-bin-script = mtrace
82 generated += mtrace
84 # The Perl script will print addresses and to do this nicely we must know
85 # whether we are on a 32 or 64 bit machine.
86 ifneq ($(findstring wordsize-32,$(config-sysdirs)),)
87 address-width=10
88 else
89 address-width=18
90 endif
91 endif
93 # Unless we get a test for the availability of libgd which also works
94 # for cross-compiling we disable the memusagestat generation in this
95 # situation.
96 ifneq ($(cross-compiling),yes)
97 # If the gd library is available we build the `memusagestat' program.
98 ifneq ($(LIBGD),no)
99 others: $(objpfx)memusage
100 install-bin = memusagestat
101 install-bin-script += memusage
102 generated += memusagestat memusage
103 extra-objs += memusagestat.o
105 # The configure.ac check for libgd and its headers did not use $SYSINCLUDES.
106 # The directory specified by --with-headers usually contains only the basic
107 # kernel interface headers, not something like libgd. So the simplest thing
108 # is to presume that the standard system headers will be ok for this file.
109 $(objpfx)memusagestat.o: sysincludes = # nothing
110 endif
111 endif
113 # Another goal which can be used to override the configure decision.
114 .PHONY: do-memusagestat
115 do-memusagestat: $(objpfx)memusagestat
117 memusagestat-modules = memusagestat
119 cpp-srcs-left := $(memusagestat-modules)
120 lib := memusagestat
121 include $(patsubst %,$(..)cppflags-iterator.mk,$(cpp-srcs-left))
123 $(objpfx)memusagestat: $(memusagestat-modules:%=$(objpfx)%.o)
124 $(LINK.o) -o $@ $^ $(libgd-LDFLAGS) -lgd -lpng -lz -lm
126 ifeq ($(run-built-tests),yes)
127 ifeq (yes,$(build-shared))
128 ifneq ($(PERL),no)
129 tests-special += $(objpfx)tst-mtrace.out
130 endif
131 endif
132 endif
134 include ../Rules
136 CFLAGS-mcheck-init.c = $(PIC-ccflag)
137 CFLAGS-obstack.c = $(uses-callbacks)
139 $(objpfx)libmcheck.a: $(objpfx)mcheck-init.o
140 -rm -f $@
141 $(patsubst %/,cd % &&,$(objpfx)) \
142 $(LN_S) $(<F) $(@F)
144 lib: $(objpfx)libmcheck.a
146 ifeq ($(run-built-tests),yes)
147 ifeq (yes,$(build-shared))
148 ifneq ($(PERL),no)
149 $(objpfx)tst-mtrace.out: tst-mtrace.sh $(objpfx)tst-mtrace
150 $(SHELL) $< $(common-objpfx) '$(test-program-prefix-before-env)' \
151 '$(run-program-env)' '$(test-program-prefix-after-env)' ; \
152 $(evaluate-test)
153 endif
154 endif
155 endif
157 tst-mcheck-ENV = MALLOC_CHECK_=3
158 tst-malloc-usable-ENV = MALLOC_CHECK_=3
160 # Uncomment this for test releases. For public releases it is too expensive.
161 #CPPFLAGS-malloc.o += -DMALLOC_DEBUG=1
163 sLIBdir := $(shell echo $(slibdir) | sed 's,lib\(\|64\)$$,\\\\$$LIB,')
165 $(objpfx)mtrace: mtrace.pl
166 rm -f $@.new
167 sed -e 's|@PERL@|$(PERL)|' -e 's|@XXX@|$(address-width)|' \
168 -e 's|@VERSION@|$(version)|' \
169 -e 's|@PKGVERSION@|$(PKGVERSION)|' \
170 -e 's|@REPORT_BUGS_TO@|$(REPORT_BUGS_TO)|' $^ > $@.new \
171 && rm -f $@ && mv $@.new $@ && chmod +x $@
173 $(objpfx)memusage: memusage.sh
174 rm -f $@.new
175 sed -e 's|@BASH@|$(BASH)|' -e 's|@VERSION@|$(version)|' \
176 -e 's|@SLIBDIR@|$(sLIBdir)|' -e 's|@BINDIR@|$(bindir)|' \
177 -e 's|@PKGVERSION@|$(PKGVERSION)|' \
178 -e 's|@REPORT_BUGS_TO@|$(REPORT_BUGS_TO)|' $^ > $@.new \
179 && rm -f $@ && mv $@.new $@ && chmod +x $@
182 # The implementation uses `dlsym'
183 $(objpfx)libmemusage.so: $(libdl)
185 # Extra dependencies
186 $(foreach o,$(all-object-suffixes),$(objpfx)malloc$(o)): arena.c hooks.c
188 # Compile the tests with a flag which suppresses the mallopt call in
189 # the test skeleton.
190 $(tests:%=$(objpfx)%.o): CPPFLAGS += -DTEST_NO_MALLOPT
192 $(objpfx)tst-interpose-nothread: $(objpfx)tst-interpose-aux-nothread.o
193 $(objpfx)tst-interpose-thread: \
194 $(objpfx)tst-interpose-aux-thread.o $(shared-thread-library)
195 $(objpfx)tst-interpose-static-nothread: $(objpfx)tst-interpose-aux-nothread.o
196 $(objpfx)tst-interpose-static-thread: \
197 $(objpfx)tst-interpose-aux-thread.o $(static-thread-library)