]> git.ipfire.org Git - thirdparty/glibc.git/blame - Makerules
Fix typo in safety annotations in envz_remove
[thirdparty/glibc.git] / Makerules
CommitLineData
b168057a 1# Copyright (C) 1991-2015 Free Software Foundation, Inc.
1c68c264
RM
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 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.
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# Lesser General Public License for more details.
13
14# You should have received a copy of the GNU Lesser General Public
59ba27a6
PE
15# License along with the GNU C Library; if not, see
16# <http://www.gnu.org/licenses/>.
1c68c264
RM
17
18#
19# Common rules for making the GNU C library. This file is included
20# by the top-level Makefile and by all subdirectory makefiles
21# (through Rules).
22#
23ifneq (,)
24This makefile requires GNU Make.
25endif
26
27REQUIRED_MAKE_VERSION = 3.74
28REAL_MAKE_VERSION = $(firstword $(MAKE_VERSION))
29
30ifneq ($(REQUIRED_MAKE_VERSION), \
31 $(firstword $(sort $(REAL_MAKE_VERSION) $(REQUIRED_MAKE_VERSION))))
32Wrong GNU Make version. See above for the version needed.
33endif
34
35
36ifdef subdir
37.. := ../
38endif # subdir
39
40# If `sources' was defined by the parent makefile, undefine it so
41# we will later get it from wildcard search in this directory.
42ifneq "$(findstring env,$(origin sources))" ""
43sources :=
44endif
45
46oPATH := $(PATH)
47PATH := this definition should take precedence over $(oPATH)
48ifeq ($(PATH),$(oPATH))
49You must not use the -e flag when building the GNU C library.
50else
51PATH := $(oPATH)
52endif
53\f
54ifndef +included-Makeconfig
55include $(..)Makeconfig
56endif
57
1c68c264
RM
58# This variable is used in ``include $(o-iterator)'' after defining
59# $(o-iterator-doit) to produce some desired rule using $o for the object
60# suffix, and setting $(object-suffixes-left) to $(object-suffixes); a copy
61# is produced for each object suffix in use.
62o-iterator = $(patsubst %,$(..)o-iterator.mk,$(object-suffixes-left))
63\f
64# Include any system-specific makefiles.
65
66# This is here so things in sysdep Makefiles can easily depend on foo.h as
67# appropriate and not worry about where foo.h comes from, which may be
68# system dependent and not known by that Makefile.
69vpath %.h $(subst $(empty) ,:,$(strip $(common-objpfx) $(objpfx) \
70 $(+sysdep_dirs) $(..)))
71
72# The same is true for RPC source files.
73vpath %.x $(subst $(empty) ,:,$(strip $(common-objpfx) $(objpfx) \
74 $(+sysdep_dirs) $(..)))
75
76# Some sysdep makefiles use this to distinguish being included here from
77# being included individually by a subdir makefile (hurd/Makefile needs this).
78in-Makerules := yes
79
e0a3ed4f 80sysdep-makefiles := $(wildcard $(sysdirs:=/Makefile))
1c68c264
RM
81ifneq (,$(sysdep-makefiles))
82include $(sysdep-makefiles)
83endif
84
85
86# Reorder before-compile so that mach things come first, and hurd things
87# second, before all else. The mach and hurd subdirectories have many
88# generated header files which the much of rest of the library depends on,
89# so it is best to build them first (and mach before hurd, at that).
90before-compile := $(filter $(common-objpfx)mach% $(common-objpfx)hurd%,\
91 $(before-compile)) \
92 $(filter-out $(common-objpfx)mach% $(common-objpfx)hurd%,\
93 $(before-compile))
94
95# Even before that, we need abi-versions.h which is generated right here.
3f2e46a4 96ifeq ($(build-shared),yes)
1c68c264
RM
97ifndef avoid-generated
98before-compile := $(common-objpfx)abi-versions.h $(before-compile)
99$(common-objpfx)abi-versions.h: $(..)scripts/abi-versions.awk \
100 $(common-objpfx)Versions.all
af296fcd 101 LC_ALL=C $(AWK) -f $^ > $@T
1c68c264
RM
102 mv -f $@T $@
103
104$(common-objpfx)%.latest: $(common-objpfx)abi-versions.h
105 sed -n '/ VERSION_$*_/{s/^.*_\([A-Z0-9_]*\).*$$/\1/;h;};$${g;p;}' \
106 $(common-objpfx)abi-versions.h > $@T
107 mv -f $@T $@
108endif # avoid-generated
3f2e46a4 109endif # $(build-shared) = yes
1c68c264 110
92ad15a8
UD
111ifndef avoid-generated
112before-compile := $(common-objpfx)libc-abis.h $(before-compile)
17ad3877
RM
113$(common-objpfx)libc-abis.h: $(common-objpfx)libc-abis.stamp; @:
114$(common-objpfx)libc-abis.stamp: $(..)scripts/gen-libc-abis \
df5efd61
RM
115 $(firstword $(wildcard $(sysdirs:=/libc-abis)) \
116 $(..)libc-abis) \
117 $(..)Makerules
118 $(SHELL) $< \
92ad15a8 119 $(base-machine)-$(config-vendor)-$(config-os) \
17ad3877
RM
120 < $(word 2,$^) > $(@:.stamp=.h)T
121 $(move-if-change) $(@:.stamp=.h)T $(@:.stamp=.h)
122 touch $@
92ad15a8
UD
123common-generated += $(common-objpfx)libc-abis.h
124endif # avoid-generated
125
d73f5331 126# Make sure the subdirectory for object files gets created.
1c68c264 127ifdef objpfx
d73f5331 128ifeq (,$(wildcard $(objpfx).))
1c68c264
RM
129before-compile += $(objpfx).
130$(objpfx).:
131 $(make-target-directory)
132endif
133endif
134
135# Remove existing files from `before-compile'. Things are added there when
136# they must exist for dependency generation to work right, but once they
137# exist there is no further need for every single file to depend on them,
138# and those gratuitous dependencies result in many gratuitous
139# recompilations.
140before-compile := $(filter-out $(wildcard $(before-compile)),$(before-compile))
141
142# Don't let any before-compile file be an intermediate and get removed.
143ifdef before-compile
144$(before-compile):
145endif
146
7f3a54bd
RM
147# We don't want $(common-objpfx) files to depend on miscellaneous stuff
148# in subdirs.
149ifdef subdir
150common-before-compile := $(filter-out $(objpfx)%,$(before-compile))
151else
152common-before-compile = $(before-compile)
153endif
154
d73f5331 155ifndef subdir
1c68c264
RM
156# If a makefile needs to do something conditional on something that
157# can only be figured out from headers, write a FOO.make.c input
158# file that uses cpp contructs and contains @@@ LINE @@@ for each LINE
159# to emit in the generated makefile, and use -include $(common-objpfx)FOO.make.
d73f5331
RM
160#
161# We only generate these in the top-level makefile, to avoid any weirdness
162# from subdir-specific makefile tweaks creeping in on an update.
7f3a54bd 163$(common-objpfx)%.make: $(..)%.make.c $(..)Makerules $(common-before-compile)
1c68c264
RM
164 rm -f $@T $@.dT
165 (echo '# Generated from $*.make.c by Makerules.'; \
3192fd8e 166 $(CC) $(CFLAGS) $(CPPFLAGS) -E -DASSEMBLER $< \
7cd72ad3 167 -MD -MP -MT '$$(common-objpfx)$*.make' -MF $@.dT \
1c68c264
RM
168 | sed -n '/@@@/{s/@@@[ ]*\(.*\)@@@/\1/;s/[ ]*$$//p;}'; \
169 echo 'common-generated += $(@F)'; \
9ae10332
RM
170 sed $(sed-remove-objpfx) $(sed-remove-dotdot) $@.dT; \
171 rm -f $@.dT) > $@T
1c68c264 172 mv -f $@T $@
d73f5331 173endif
9ae10332 174
0e56981e 175ifdef subdir
7cd72ad3
RM
176sed-remove-dotdot := -e 's@ *\.\.\/\([^ \]*\)@ $$(..)\1@g' \
177 -e 's@^\.\.\/\([^ \]*\)@$$(..)\1@g'
0e56981e 178else
7cd72ad3
RM
179sed-remove-dotdot := -e 's@ *\([^ \/$$][^ \]*\)@ $$(..)\1@g' \
180 -e 's@^\([^ \/$$][^ \]*\)@$$(..)\1@g'
0e56981e 181endif
7f3a54bd
RM
182
183
0c7c6d53 184ifdef gen-as-const-headers
7f3a54bd
RM
185# Generating headers for assembly constants.
186# We need this defined early to get into before-compile before
187# it's used in sysd-rules, below.
188$(common-objpfx)%.h $(common-objpfx)%.h.d: $(..)scripts/gen-as-const.awk \
189 %.sym $(common-before-compile)
190 $(AWK) -f $< $(filter %.sym,$^) \
1feda3ed
RM
191 | $(CC) -S -o $(@:.h.d=.h)T3 $(CFLAGS) $(CPPFLAGS) -x c - \
192 -MD -MP -MF $(@:.h=.h.d)T -MT '$(@:.h=.h.d) $(@:.h.d=.h)'
193 sed -n 's/^.*@@@name@@@\([^@]*\)@@@value@@@[^0-9Xxa-fA-F-]*\([0-9Xxa-fA-F-][0-9Xxa-fA-F-]*\).*@@@end@@@.*$$/#define \1 \2/p' \
194 $(@:.h.d=.h)T3 > $(@:.h.d=.h)T
195 rm -f $(@:.h.d=.h)T3
7f3a54bd
RM
196 sed $(sed-remove-objpfx) $(sed-remove-dotdot) \
197 $(@:.h=.h.d)T > $(@:.h=.h.d)T2
198 rm -f $(@:.h=.h.d)T
199 mv -f $(@:.h=.h.d)T2 $(@:.h=.h.d)
200 mv -f $(@:.h.d=.h)T $(@:.h.d=.h)
201vpath %.sym $(sysdirs)
202before-compile += $(gen-as-const-headers:%.sym=$(common-objpfx)%.h)
0c7c6d53 203
ba389ce3
RM
204tests += $(gen-as-const-headers:%.sym=test-as-const-%)
205generated += $(gen-as-const-headers:%.sym=test-as-const-%.c)
206$(objpfx)test-as-const-%.c: $(..)scripts/gen-as-const.awk $(..)Makerules \
207 %.sym $(common-objpfx)%.h
0c7c6d53
RM
208 ($(AWK) '{ sub(/^/, "asconst_", $$2); print; }' $(filter %.h,$^); \
209 $(AWK) -v test=1 -f $< $(filter %.sym,$^); \
210 echo '#include "$(..)test-skeleton.c"') > $@T
211 mv -f $@T $@
212endif
1c68c264 213\f
67c37987
RM
214ifeq (yes,$(build-shared))
215# Generate the header containing the names of all shared libraries.
216# We use a stamp file to avoid unnecessary recompilations.
217before-compile += $(common-objpfx)gnu/lib-names.h
218ifeq ($(soversions.mk-done),t)
219ifndef abi-variants
220lib-names-h-abi = gnu/lib-names.h
221lib-names-stmp-abi = gnu/lib-names.stmp
222else
223lib-names-h-abi = gnu/lib-names-$(default-abi).h
224lib-names-stmp-abi = gnu/lib-names-$(default-abi).stmp
225before-compile += $(common-objpfx)$(lib-names-h-abi)
226common-generated += gnu/lib-names.h
227install-others-nosubdir: $(inst_includedir)/$(lib-names-h-abi)
228$(common-objpfx)gnu/lib-names.h:
229 $(make-target-directory)
230 { \
231 echo '/* This file is automatically generated.';\
232 echo ' It defines macros to allow user program to find the shared'; \
233 echo ' library files which come as part of GNU libc. */'; \
234 echo '#ifndef __GNU_LIB_NAMES_H'; \
235 echo '#define __GNU_LIB_NAMES_H 1'; \
236 echo ''; \
237 $(if $(abi-includes), \
238 $(foreach h,$(abi-includes), echo '#include <$(h)>';) \
239 echo '';) \
240 $(foreach v,$(abi-variants),\
241 $(if $(abi-$(v)-condition),\
242 echo '#if $(abi-$(v)-condition)'; \
243 echo '# include <gnu/lib-names-$(v).h>'); \
244 $(if $(abi-$(v)-condition),echo '#endif';)) \
245 echo ''; \
246 echo '#endif /* gnu/lib-names.h */'; \
247 } > $@
248endif
249$(common-objpfx)$(lib-names-h-abi): $(common-objpfx)$(lib-names-stmp-abi); @:
250$(common-objpfx)$(lib-names-stmp-abi): $(..)scripts/lib-names.awk \
251 $(common-objpfx)soversions.i
252 $(make-target-directory)
253 { \
254 $(if $(abi-variants), \
255 echo '/* This file is automatically generated. */';\
256 echo '#ifndef __GNU_LIB_NAMES_H'; \
257 echo '# error "Never use <$(lib-names-h-abi)> directly; include <gnu/lib-names.h> instead."'; \
258 echo '#endif';, \
259 echo '/* This file is automatically generated.';\
260 echo ' It defines macros to allow user program to find the shared'; \
261 echo ' library files which come as part of GNU libc. */'; \
262 echo '#ifndef __GNU_LIB_NAMES_H'; \
263 echo '#define __GNU_LIB_NAMES_H 1';) \
264 echo ''; \
265 ($(foreach s,$(all-sonames), echo $(s);)) \
266 | LC_ALL=C $(AWK) -f $(firstword $^) | LC_ALL=C sort; \
267 $(if $(abi-variants),, \
268 echo ''; \
269 echo '#endif /* gnu/lib-names.h */';) \
270 } > ${@:stmp=T}
271 $(move-if-change) ${@:stmp=T} ${@:stmp=h}
272 touch $@
273endif
274common-generated += $(lib-names-h-abi) $(lib-names-stmp-abi)
275endif
276\f
277###############################################################################
278# NOTE! Everything adding to before-compile needs to come before this point! #
279###############################################################################
280
1c68c264
RM
281# Generate an ordered list of implicit rules which find the source files in
282# each sysdep directory. The old method was to use vpath to search all the
283# sysdep directories. However, that had the problem that a .S file in a
284# later directory would be chosen over a .c file in an earlier directory,
285# which does not preserve the desired sysdeps ordering behavior.
286
346d65b3
RM
287# System-dependent makefiles can put in `inhibit-sysdep-asm' regexps
288# matching sysdep directories whose assembly source files should be
289# suppressed.
1c68c264 290
e0a3ed4f 291-include $(common-objpfx)sysd-rules
1c68c264
RM
292ifneq ($(sysd-rules-sysdirs),$(config-sysdirs))
293# The value of $(+sysdep_dirs) the sysd-rules was computed for
294# differs from the one we are using now. So force a rebuild of sysd-rules.
295sysd-rules-force = FORCE
296FORCE:
297endif
346d65b3
RM
298$(common-objpfx)sysd-rules: $(..)scripts/sysd-rules.awk \
299 $(common-objpfx)config.make $(..)Makerules \
708ef8a4
RM
300 $(sysdep-makefiles) $(sysdep-makeconfigs) \
301 $(sysd-rules-force)
1c68c264 302 -@rm -f $@T
346d65b3
RM
303 LC_ALL=C $(AWK) -f $< > $@T \
304 -v all_object_suffixes='$(all-object-suffixes)' \
305 -v inhibit_sysdep_asm='$(inhibit-sysdep-asm)' \
306 -v sysd_rules_patterns='$(sysd-rules-patterns)' \
307 -v config_sysdirs='$(config-sysdirs)'
1c68c264
RM
308 mv -f $@T $@
309
310ifndef sysd-rules-done
311# Don't do deps until this exists, because it provides rules to make the deps.
312no_deps=t
313endif
314
b6ab06ce
UD
315define o-iterator-doit
316$(objpfx)%$o: %.S $(before-compile); $$(compile-command.S)
317endef
318object-suffixes-left := $(all-object-suffixes)
319include $(o-iterator)
320
b6ab06ce
UD
321define o-iterator-doit
322$(objpfx)%$o: %.c $(before-compile); $$(compile-command.c)
323endef
324object-suffixes-left := $(all-object-suffixes)
325include $(o-iterator)
326
7735afa2
UD
327define o-iterator-doit
328$(objpfx)%$o: %.cc $(before-compile); $$(compile-command.cc)
329endef
330object-suffixes-left := $(all-object-suffixes)
331include $(o-iterator)
332
b6ab06ce
UD
333# Omit the objpfx rules when building in the source tree, because
334# objpfx is empty and so these rules just override the ones above.
335ifdef objpfx
336# Define first rules to find the source files in $(objpfx).
337# Generated source files will end up there.
338define o-iterator-doit
339$(objpfx)%$o: $(objpfx)%.S $(before-compile); $$(compile-command.S)
340endef
341object-suffixes-left := $(all-object-suffixes)
342include $(o-iterator)
343
b6ab06ce
UD
344define o-iterator-doit
345$(objpfx)%$o: $(objpfx)%.c $(before-compile); $$(compile-command.c)
346endef
347object-suffixes-left := $(all-object-suffixes)
348include $(o-iterator)
349endif
350
1c68c264
RM
351# Generate version maps, but wait until sysdep-subdirs is known
352ifeq ($(sysd-sorted-done),t)
3f2e46a4 353ifeq ($(build-shared),yes)
1c68c264
RM
354-include $(common-objpfx)sysd-versions
355$(addprefix $(common-objpfx),$(version-maps)): $(common-objpfx)sysd-versions
356common-generated += $(version-maps)
357postclean-generated += sysd-versions Versions.all abi-versions.h \
22dbc19d 358 Versions.def Versions.v.i Versions.v
1c68c264
RM
359
360ifndef avoid-generated
e0a3ed4f 361ifneq ($(sysd-versions-subdirs),$(sorted-subdirs) $(config-sysdirs))
1c68c264
RM
362sysd-versions-force = FORCE
363FORCE:
364endif
22dbc19d
RM
365
366$(common-objpfx)Versions.def: $(..)scripts/versionlist.awk \
367 $(common-objpfx)Versions.v
368 LC_ALL=C $(AWK) -f $^ > $@T
369 mv -f $@T $@
370
1c68c264
RM
371$(common-objpfx)Versions.all: $(..)scripts/firstversions.awk \
372 $(common-objpfx)soversions.i \
22dbc19d 373 $(common-objpfx)Versions.def
9d0547ce
RM
374 { while read which lib version setname; do \
375 test x"$$which" = xDEFAULT || continue; \
1c68c264
RM
376 test -z "$$setname" || echo "$$lib : $$setname"; \
377 done < $(word 2,$^); \
378 cat $(word 3,$^); \
379 } | LC_ALL=C $(AWK) -f $< > $@T
380 mv -f $@T $@
381# See %.v/%.v.i implicit rules in Makeconfig.
e0a3ed4f 382$(common-objpfx)Versions.v.i: $(wildcard $(subdirs:%=$(..)%/Versions)) \
1c68c264 383 $(wildcard $(sysdirs:%=%/Versions)) \
1c68c264
RM
384 $(sysd-versions-force)
385$(common-objpfx)sysd-versions: $(common-objpfx)Versions.all \
386 $(common-objpfx)Versions.v \
387 $(..)scripts/versions.awk
e0a3ed4f 388 ( echo 'sysd-versions-subdirs = $(subdirs) $(config-sysdirs)' ; \
1c68c264
RM
389 cat $(word 2,$^) \
390 | LC_ALL=C $(AWK) -v buildroot=$(common-objpfx) -v defsfile=$< \
391 -v move_if_change='$(move-if-change)' \
392 -f $(word 3,$^); \
393 ) > $@T
394 mv -f $@T $@
395endif # avoid-generated
3f2e46a4 396endif # $(build-shared) = yes
1c68c264
RM
397endif # sysd-sorted-done
398
d73f5331 399# Generate .dT files as we compile.
b9608428 400compile-mkdep-flags = -MD -MP -MF $@.dt -MT $@
d73f5331 401compile-command.S = $(compile.S) $(OUTPUT_OPTION) $(compile-mkdep-flags)
d73f5331 402compile-command.c = $(compile.c) $(OUTPUT_OPTION) $(compile-mkdep-flags)
7735afa2 403compile-command.cc = $(compile.cc) $(OUTPUT_OPTION) $(compile-mkdep-flags)
1c68c264 404
656416c9
AS
405# Like compile-mkdep-flags, but for use with $(BUILD_CC). We don't want to
406# track system includes here, they may spuriously trigger an install rule,
407# and would cause the check-local-headers test to fail.
408native-compile-mkdep-flags = -MMD -MP -MF $@.dt -MT $@
409
1c68c264
RM
410# GCC can grok options after the file name, and it looks nicer that way.
411compile.c = $(CC) $< -c $(CFLAGS) $(CPPFLAGS)
7735afa2 412compile.cc = $(CXX) $< -c $(CXXFLAGS) $(CPPFLAGS)
073e82bf
RM
413compile.S = $(CC) $< -c $(CPPFLAGS) $(S-CPPFLAGS) \
414 $(ASFLAGS) $(ASFLAGS-$(suffix $@))
c1487492 415COMPILE.c = $(CC) -c $(CFLAGS) $(CPPFLAGS)
073e82bf
RM
416COMPILE.S = $(CC) -c $(CPPFLAGS) $(S-CPPFLAGS) \
417 $(ASFLAGS) $(ASFLAGS-$(suffix $@))
1c68c264 418
1c68c264
RM
419# We need this for the output to go in the right place. It will default to
420# empty if make was configured to work with a cc that can't grok -c and -o
421# together. You can't compile the C library with such a compiler.
422OUTPUT_OPTION = -o $@
423
c1487492
RM
424# This is the end of the pipeline for compiling generated C code.
425compile-stdin.c = $(COMPILE.c) -o $@ -x c - $(compile-mkdep-flags)
426
1c68c264
RM
427# We need the $(CFLAGS) to be in there to have the right predefines during
428# the dependency run for C sources. But having it for assembly sources can
429# get the wrong predefines.
f4281cc4 430S-CPPFLAGS = -DASSEMBLER $(asm-CPPFLAGS)
d73f5331 431
1c68c264
RM
432define +make-deps
433$(make-target-directory)
434$(+mkdep) $< $(if $(filter %.c,$<),$(CFLAGS)) \
b710b53d
RM
435 $(CPPFLAGS) $($(patsubst .%,%,$(suffix $(<F)))-CPPFLAGS) | sed -e\
436's,$(subst .,\.,$(@F:.d=.o)),$(foreach o,$(all-object-suffixes),$(@:.d=$o)) $@,' \
437$(sed-remove-objpfx) $(sed-remove-dotdot) > $(@:.d=.T)
1c68c264
RM
438mv -f $(@:.d=.T) $@ $(generate-md5)
439endef
d73f5331 440
1c68c264
RM
441ifneq (,$(objpfx))
442# Continuation lines here are dangerous because they introduce spaces!
443define sed-remove-objpfx
444-e 's@ $(subst .,\.,$(subst @,\@,$(common-objpfx)))@ $$(common-objpfx)@g' \
445-e 's@^$(subst .,\.,$(subst @,\@,$(common-objpfx)))@$$(common-objpfx)@g'
446endef
447endif
448\f
449# Modify the list of routines we build for different targets
450
0269750c 451ifeq (yes,$(build-shared))
1c68c264
RM
452ifndef libc.so-version
453# Undefine this because it can't work when we libc.so is unversioned.
454static-only-routines =
455endif
456endif
457
1c68c264 458elide-routines.oS += $(filter-out $(static-only-routines),\
c2d54929
JM
459 $(routines) $(aux) $(sysdep_routines))
460elide-routines.os += $(static-only-routines)
1c68c264
RM
461
462# If we have versioned code we don't need the old versions in any of the
463# static libraries.
c2d54929
JM
464elide-routines.o += $(shared-only-routines)
465elide-routines.op += $(shared-only-routines)
466elide-routines.og += $(shared-only-routines)
1c68c264
RM
467\f
468# Shared library building.
469
470ifeq (yes,$(build-shared))
471
3f2e46a4 472# Reference map file only when shared libraries are built and a map file name
1c68c264 473# is given.
3f2e46a4 474ifeq ($(build-shared),yes)
1c68c264
RM
475map-file = $(firstword $($(@F:.so=-map)) \
476 $(addprefix $(common-objpfx), \
477 $(filter $(@F:.so=.map),$(version-maps))))
478load-map-file = $(map-file:%=-Wl,--version-script=%)
479endif
480
fab7ce3f
JM
481# Compiler arguments to use to link a shared object with libc and
482# ld.so. This is intended to be as similar as possible to a default
483# link with an installed libc.
484link-libc-args = -Wl,--start-group \
485 $(libc-for-link) \
486 $(common-objpfx)libc_nonshared.a \
4134b50d 487 $(as-needed) $(elf-objpfx)ld.so $(no-as-needed) \
fab7ce3f
JM
488 -Wl,--end-group
489
490# The corresponding shared libc to use. This may be modified for a
491# particular target.
492libc-for-link = $(common-objpfx)libc.so
493
494# The corresponding dependencies. As these are used in dependencies,
495# not just commands, they cannot use target-specific variables so need
496# to name both possible libc.so objects.
497link-libc-deps = $(common-objpfx)libc.so $(common-objpfx)linkobj/libc.so \
4134b50d 498 $(common-objpfx)libc_nonshared.a $(elf-objpfx)ld.so
fab7ce3f 499
1c68c264
RM
500# Pattern rule to build a shared object from an archive of PIC objects.
501# This must come after the installation rules so Make doesn't try to
502# build shared libraries in place from the installed *_pic.a files.
503# $(LDLIBS-%.so) may contain -l switches to generate run-time dependencies
fab7ce3f
JM
504# on other shared objects. The linking with libc and ld.so is intended
505# to be as similar as possible to a default link with an installed libc.
02657da2 506lib%.so: lib%_pic.a $(+preinit) $(+postinit) $(link-libc-deps)
fab7ce3f 507 $(build-shlib) $(link-libc-args)
04f5a636 508 $(call after-link,$@)
1c68c264 509
1c68c264 510define build-shlib-helper
a7f7b879 511$(LINK.o) -shared $(static-libgcc) -Wl,-O1 $(sysdep-LDFLAGS) \
740b3dbe 512 $(if $($(@F)-no-z-defs)$(no-z-defs),,-Wl,-z,defs) $(rtld-LDFLAGS) \
1c68c264
RM
513 $(extra-B-$(@F:lib%.so=%).so) -B$(csu-objpfx) \
514 $(extra-B-$(@F:lib%.so=%).so) $(load-map-file) \
515 -Wl,-soname=lib$(libprefix)$(@F:lib%.so=%).so$($(@F)-version) \
516 $(LDFLAGS.so) $(LDFLAGS-$(@F:lib%.so=%).so) \
517 -L$(subst :, -L,$(rpath-link)) -Wl,-rpath-link=$(rpath-link)
518endef
1c68c264 519
f781ef40
RM
520ifeq (yes,$(use-default-link))
521# If the linker is good enough, we can let it use its default linker script.
522shlib-lds =
523shlib-lds-flags =
524else
1c68c264
RM
525# binutils only position loadable notes into the first page for binaries,
526# not for shared objects
20792f99 527$(common-objpfx)shlib.lds: $(common-objpfx)config.make $(..)Makerules
358cad7c 528 $(LINK.o) -shared -Wl,-O1 \
c1e781ae 529 -nostdlib -nostartfiles \
740b3dbe 530 $(sysdep-LDFLAGS) $(rtld-LDFLAGS) $(LDFLAGS.so) \
358cad7c
RM
531 -Wl,--verbose 2>&1 | \
532 sed > $@T \
533 -e '/^=========/,/^=========/!d;/^=========/d' \
71213dc2
UD
534 $(if $(filter yes,$(have-hash-style)), \
535 -e 's/^.*\.gnu\.hash[ ]*:.*$$/ .note.ABI-tag : { *(.note.ABI-tag) } &/' \
536 -e '/^[ ]*\.hash[ ]*:.*$$/{h;d;}' \
537 -e '/DATA_SEGMENT_ALIGN/{H;g}' \
538 , \
539 -e 's/^.*\.hash[ ]*:.*$$/ .note.ABI-tag : { *(.note.ABI-tag) } &/' \
540 ) \
358cad7c 541 -e 's/^.*\*(\.dynbss).*$$/& \
20792f99 542 PROVIDE(__start___libc_freeres_ptrs = .); \
358cad7c 543 *(__libc_freeres_ptrs) \
ed20b3d9 544 PROVIDE(__stop___libc_freeres_ptrs = .);/'\
561bcb80 545 -e 's@^.*\*(\.jcr).*$$@& \
db2f05ba
RM
546 PROVIDE(__start___libc_subfreeres = .);\
547 __libc_subfreeres : { *(__libc_subfreeres) }\
548 PROVIDE(__stop___libc_subfreeres = .);\
549 PROVIDE(__start___libc_atexit = .);\
550 __libc_atexit : { *(__libc_atexit) }\
551 PROVIDE(__stop___libc_atexit = .);\
552 PROVIDE(__start___libc_thread_subfreeres = .);\
553 __libc_thread_subfreeres : { *(__libc_thread_subfreeres) }\
561bcb80
RM
554 PROVIDE(__stop___libc_thread_subfreeres = .);\
555 /DISCARD/ : { *(.gnu.glibc-stub.*) }@'
decd4e50 556 test -s $@T
358cad7c
RM
557 mv -f $@T $@
558common-generated += shlib.lds
559
2d4fa81e
RM
560shlib-lds = $(common-objpfx)shlib.lds
561shlib-lds-flags = -T $(shlib-lds)
f781ef40 562endif
2d4fa81e 563
358cad7c 564define build-shlib
2d4fa81e 565$(build-shlib-helper) -o $@ $(shlib-lds-flags) \
1c68c264 566 $(csu-objpfx)abi-note.o $(build-shlib-objlist)
1c68c264 567endef
1c68c264 568
1c68c264 569define build-module-helper
740b3dbe 570$(LINK.o) -shared $(static-libgcc) $(sysdep-LDFLAGS) $(rtld-LDFLAGS) \
1a379ea0 571 $(if $($(@F)-no-z-defs)$(no-z-defs),,-Wl,-z,defs) \
1c68c264
RM
572 -B$(csu-objpfx) $(load-map-file) \
573 $(LDFLAGS.so) $(LDFLAGS-$(@F:%.so=%).so) \
574 -L$(subst :, -L,$(rpath-link)) -Wl,-rpath-link=$(rpath-link)
575endef
1c68c264
RM
576
577# This macro is similar to build-shlib but it does not define a soname
578# and it does not depend on the destination name to start with `lib'.
1c68c264
RM
579# binutils only position loadable notes into the first page for binaries,
580# not for shared objects
581define build-module
2d4fa81e 582$(build-module-helper) -o $@ $(shlib-lds-flags) \
fab7ce3f 583 $(csu-objpfx)abi-note.o $(build-module-objlist) $(link-libc-args)
04f5a636 584$(call after-link,$@)
1c68c264 585endef
d9266ea0 586define build-module-asneeded
2d4fa81e 587$(build-module-helper) -o $@ $(shlib-lds-flags) \
d9266ea0 588 $(csu-objpfx)abi-note.o \
fab7ce3f
JM
589 -Wl,--as-needed $(build-module-objlist) -Wl,--no-as-needed \
590 $(link-libc-args)
04f5a636 591$(call after-link,$@)
d9266ea0 592endef
1c68c264
RM
593
594build-module-helper-objlist = \
595 $(patsubst %_pic.a,$(whole-archive) %_pic.a $(no-whole-archive),\
fab7ce3f
JM
596 $(filter-out %.lds $(map-file) $(+preinit) $(+postinit) \
597 $(link-libc-deps),$^))
1c68c264
RM
598
599build-module-objlist = $(build-module-helper-objlist) $(LDLIBS-$(@F:%.so=%).so)
600build-shlib-objlist = $(build-module-helper-objlist) \
601 $(LDLIBS-$(@F:lib%.so=%).so)
602
603# Don't try to use -lc when making libc.so itself.
604# Also omits crti.o and crtn.o, which we do not want
605# since we define our own `.init' section specially.
606LDFLAGS-c.so = -nostdlib -nostartfiles
cbdb12de
UD
607# But we still want to link libc.so against $(libc.so-gnulib).
608LDLIBS-c.so += $(libc.so-gnulib)
1c68c264
RM
609# Give libc.so an entry point and make it directly runnable itself.
610LDFLAGS-c.so += -e __libc_main
4df8c11d
UD
611# If lazy relocation is disabled add the -z now flag.
612ifeq ($(bind-now),yes)
613LDFLAGS-c.so += -Wl,-z,now
614endif
1c68c264
RM
615# Pre-link the objects of libc_pic.a so that we can locally resolve
616# COMMON symbols before we link against ld.so. This is because ld.so
617# contains some of libc_pic.a already, which will prevent the COMMONs
618# from being allocated in libc.so, which introduces evil dependencies
619# between libc.so and ld.so, which can make it impossible to upgrade.
1c68c264 620$(common-objpfx)libc_pic.os: $(common-objpfx)libc_pic.a
b350afab 621 $(LINK.o) -nostdlib -nostartfiles -r -o $@ \
3ce1f295 622 $(LDFLAGS-c_pic.os) -Wl,-d $(whole-archive) $^ -o $@
1b74661a
RM
623
624ifeq (,$(strip $(shlib-lds-flags)))
625# Generate a list of -R options to excise .gnu.glibc-stub.* sections.
626$(common-objpfx)libc_pic.opts: $(common-objpfx)libc_pic.os
627 $(OBJDUMP) -h $< | \
628 $(AWK) '$$2 ~ /\.gnu\.glibc-stub\./ { print "-R", $$2 }' \
629 > $@T
630 mv -f $@T $@
631# Apply those -R options.
632$(common-objpfx)libc_pic.os.clean: $(common-objpfx)libc_pic.opts \
633 $(common-objpfx)libc_pic.os
634 $(OBJCOPY) @$^ $@
635generated += libc_pic.opts libc_pic.os.clean
636
637libc_pic_clean := .clean
638endif
639
5f855e35
BM
640# Build a possibly-modified version of libc_pic.a for use in building
641# linkobj/libc.so.
642ifeq (,$(filter sunrpc,$(subdirs)))
643$(common-objpfx)linkobj/libc_pic.a: $(common-objpfx)libc_pic.a
644 $(make-target-directory)
645 ln -f $< $@
646else
647$(common-objpfx)linkobj/libc_pic.a: $(common-objpfx)libc_pic.a \
648 $(common-objpfx)sunrpc/librpc_compat_pic.a
649 $(make-target-directory)
650 (cd $(common-objpfx)linkobj; \
651 $(AR) x ../libc_pic.a; \
652 rm $$($(AR) t ../sunrpc/librpc_compat_pic.a | sed 's/^compat-//'); \
653 $(AR) x ../sunrpc/librpc_compat_pic.a; \
654 $(AR) cr libc_pic.a *.os; \
655 rm *.os)
656endif # $(subdirs) contains sunrpc
657
658# Clear link-libc-deps for the libc.so libraries so build-shlibs does not
659# filter ld.so out of the list of linked objects.
fab7ce3f 660$(common-objpfx)libc.so: link-libc-deps = # empty
5f855e35 661$(common-objpfx)linkobj/libc.so: link-libc-deps = # empty
fab7ce3f 662
5f855e35
BM
663# Use our own special initializer and finalizer files for the libc.so
664# libraries.
4134b50d 665$(common-objpfx)libc.so: $(elf-objpfx)soinit.os \
1b74661a 666 $(common-objpfx)libc_pic.os$(libc_pic_clean) \
4134b50d
JM
667 $(elf-objpfx)sofini.os \
668 $(elf-objpfx)interp.os \
669 $(elf-objpfx)ld.so \
5f855e35
BM
670 $(shlib-lds)
671 $(build-shlib)
04f5a636 672 $(call after-link,$@)
5f855e35 673
4134b50d 674$(common-objpfx)linkobj/libc.so: $(elf-objpfx)soinit.os \
5f855e35 675 $(common-objpfx)linkobj/libc_pic.a \
4134b50d
JM
676 $(elf-objpfx)sofini.os \
677 $(elf-objpfx)interp.os \
678 $(elf-objpfx)ld.so \
2d4fa81e 679 $(shlib-lds)
1c68c264 680 $(build-shlib)
04f5a636 681 $(call after-link,$@)
5f855e35 682
3f2e46a4 683ifeq ($(build-shared),yes)
1c68c264
RM
684$(common-objpfx)libc.so: $(common-objpfx)libc.map
685endif
686common-generated += libc.so libc_pic.os
687ifdef libc.so-version
688$(common-objpfx)libc.so$(libc.so-version): $(common-objpfx)libc.so
689 $(make-link)
690common-generated += libc.so$(libc.so-version)
691endif
692endif
1c68c264
RM
693\f
694# Figure out the source filenames in this directory.
695
696override sources := $(addsuffix .c,\
697 $(filter-out $(elided-routines),\
698 $(routines) $(aux) \
699 $(sysdep_routines)))
700sysdep_routines := $(sysdep_routines)
701
702headers := $(headers) $(sysdep_headers)
703
704# This is the list of all object files, gotten by
705# replacing every ".c" in `sources' with a ".o".
c2d54929 706override objects := $(addprefix $(objpfx),$(sources:.c=.o))
1c68c264
RM
707
708
709# The makefile may define $(extra-libs) with `libfoo libbar'
710# to build libfoo.a et al from the modules listed in $(libfoo-routines).
711ifdef extra-libs
712# extra-lib.mk is included once for each extra lib to define rules
713# to build it, and to add its objects to the various variables.
714# During its evaluation, $(lib) is set to the name of the library.
715extra-libs-left := $(extra-libs)
716include $(patsubst %,$(..)extra-lib.mk,$(extra-libs))
717endif
b30542fb
UD
718
719
aed48a2a
RM
720# The makefile may define $(modules-names) to build additional modules.
721# These are built with $(build-module), except any in $(modules-names-nobuild).
b30542fb
UD
722ifdef modules-names
723# extra-lib.mk is included once for each extra lib to define rules
724# to build it, and to add its objects to the various variables.
725# During its evaluation, $(lib) is set to the name of the library.
726extra-modules-left := $(modules-names)
727include $(patsubst %,$(..)extra-modules.mk,$(modules-names))
aed48a2a
RM
728
729extra-modules-build := $(filter-out $(modules-names-nobuild),$(modules-names))
730$(extra-modules-build:%=$(objpfx)%.so): $(objpfx)%.so: \
fab7ce3f 731 $(objpfx)%.os $(shlib-lds) $(link-libs-deps)
aed48a2a 732 $(build-module)
b30542fb 733endif
1c68c264
RM
734\f
735+depfiles := $(sources:.c=.d) \
736 $(patsubst %.o,%.d,$(filter %.o,$(extra-objs:.os=.o))) \
5bd66283 737 $(patsubst %.oS,%.d,$(filter %.oS,$(extra-objs))) \
376e973a 738 $(patsubst %.o,%.d,$(filter %.o,$(extra-test-objs:.os=.o))) \
1c68c264
RM
739 $(addsuffix .d,$(tests) $(xtests) $(test-srcs))
740ifeq ($(build-programs),yes)
741+depfiles += $(addsuffix .d,$(others) $(sysdep-others))
742endif
743+depfiles := $(addprefix $(objpfx),\
744 $(filter-out $(addsuffix .d,$(omit-deps)),\
9ae10332 745 $(+depfiles)))
d73f5331
RM
746all-dt-files := $(foreach o,$(object-suffixes-for-libc),$(+depfiles:.d=$o.dt))
747+depfiles := $(patsubst %.dt,%.d,$(wildcard $(all-dt-files))) \
748 $(wildcard $(all-dt-files:.dt=.d))
749
750# This is a funny rule in that it removes its input file.
751%.d: %.dt
752 @sed $(sed-remove-objpfx) $< > $(@:.d=.T) && \
753 mv -f $(@:.d=.T) $@ && \
754 rm -f $<
9ae10332
RM
755
756# Avoid the .h.d files for any .sym files whose .h files don't exist yet.
757# They will be generated when they're needed, and trying too early won't work.
758+gen-as-const := $(gen-as-const-headers:%.sym=$(common-objpfx)%.h)
759+depfiles += $(addsuffix .d,$(filter $(wildcard $(+gen-as-const)),\
760 $(+gen-as-const)))
1c68c264
RM
761
762ifdef +depfiles
763ifneq ($(no_deps),t)
764-include $(+depfiles)
765endif
766endif
767\f\f
768# Maximize efficiency by minimizing the number of rules.
769.SUFFIXES: # Clear the suffix list. We don't use suffix rules.
770# Don't define any builtin rules.
771MAKEFLAGS := $(MAKEFLAGS)r
772
773# Generic rule for making directories.
774%/:
775# mkdir isn't smart enough to strip a trailing /.
5dfeae0e
UD
776# We always require a mkdir which supports the -p option to avoid error
777# messages in case of races.
778 mkdir -p $(@:%/=%)
1c68c264
RM
779\f
780# Make sure that object files are not removed
781# when they are intermediates between sources and library members.
782.PRECIOUS: $(addprefix $(objpfx)%,$(all-object-suffixes))
783
784# Make sure that the parent library archive is never removed.
785.PRECIOUS: $(foreach l,$(libtypes),$(patsubst %,$(common-objpfx)$l,c))
786\f
787# Use the verbose option of ar and tar when not running silently.
788ifeq "$(findstring s,$(MAKEFLAGS))" "" # if not -s
789verbose := v
790else # -s
791verbose :=
792endif # not -s
793
794ARFLAGS := r$(verbose)
795CREATE_ARFLAGS := cru$(verbose)
796\f
797# This makes all the object files in the parent library archive.
798
799.PHONY: lib lib-noranlib
800lib: lib-noranlib $(foreach l,$(libtypes),$(patsubst %,$(common-objpfx)$l,c))
801lib-noranlib: libobjs
802
803# For object-suffix $o, the list of objects with that suffix.
804# Makefiles can define `elide-routines.so = foo' to leave foo.so out.
805o-objects = $(patsubst %.o,%$o,$(filter-out $(patsubst %,$(objpfx)%.o,\
806 $(elide-routines$o)),\
807 $(objects))) \
808 $(addprefix $(objpfx),$(o-objects$o))
809
810others: $(addprefix $(objpfx),$(install-lib))
811
812ifndef objects
813
814# Create the stamp$o files to keep the parent makefile happy.
815subdir_lib: $(foreach o,$(object-suffixes-for-libc),$(objpfx)stamp$o)
816$(foreach o,$(object-suffixes-for-libc),$(objpfx)stamp$o):
817 $(make-target-directory)
818 rm -f $@; > $@
819else
820
821# Define explicit rules to update each $(objpfx)stamp.SUFFIX
822# timestamp file; these rules (one explicit rule is generated for each
823# object suffix) write a list of objects to update in the stamp file.
824# The parent will then actually add them all to the archive in the
825# archive rule, below.
826define o-iterator-doit
827$(objpfx)stamp$o: $(o-objects); $$(do-stamp)
828endef
829define do-stamp
d8f6e441 830$(make-target-directory)
1c68c264
RM
831echo '$(patsubst $(objpfx)%,$(addsuffix /,$(subdir))%,$^)' > $@T
832mv -f $@T $@
833endef
834object-suffixes-left := $(object-suffixes-for-libc)
835include $(o-iterator)
836
837endif
838
839# Now define explicit rules to build the library archives; these depend
840# on the stamp files built above.
841define o-iterator-doit
842$(common-objpfx)$(patsubst %,$(libtype$o),c): \
843 $(subdirs-stamp-o) $(common-objpfx)stamp$o; $$(do-makelib)
844endef
845define do-makelib
846cd $(common-objdir) && \
847$(AR) $(CREATE_ARFLAGS) $(@F) `cat $(patsubst $(common-objpfx)%,%,$^)`
1c68c264
RM
848endef
849subdirs-stamps := $(foreach d,$(subdirs),$(common-objpfx)$d/stamp%)
850subdirs-stamp-o = $(subst %,$o,$(subdirs-stamps))
851ifndef subdir
852$(subdirs-stamps): subdir_lib;
853endif
854object-suffixes-left = $(object-suffixes-for-libc)
855include $(o-iterator)
856
857
858# This makes all the object files.
859.PHONY: objects objs libobjs extra-objs
860objects objs: libobjs extra-objs
861libobjs: $(foreach o,$(object-suffixes-for-libc),$(objpfx)stamp$o)
862extra-objs: $(addprefix $(objpfx),$(extra-objs))
863
864# Canned sequence for building an extra library archive.
865define build-extra-lib
866$(patsubst %/,cd % &&,$(objpfx)) \
867$(AR) $(CREATE_ARFLAGS) $(@:$(objpfx)%=%) \
868 $(patsubst $(objpfx)%,%,$^)
1c68c264
RM
869endef
870\f
871# Installation.
872
873.PHONY: force-install
874force-install:
875
876# $(install-lib) are installed from the object directory into $(libdir);
877# files in $(install-lib) matching `lib%.a' are ranlib'd after installation
80d4c3b0
RM
878# unless they also appear in $(non-lib.a). $(install-data) are installed as
879# they are into $(datadir). $(headers) are installed as they are in
1c68c264
RM
880# $(includedir). $(install-bin), $(install-bin-script) and $(install-sbin)
881# are installed from the object directory into $(bindir), $(bindir) and
80d4c3b0
RM
882# $(sbindir), respectively. $(install-others) and $(install-others-programs)
883# are absolute path names of files to install; rules to install them are
884# defined elsewhere.
1c68c264
RM
885
886# The simple library name to install libc.a under.
887# This could be defined by a sysdep Makefile.
888ifndef libc-name
889libc-name := c
890endif
891
892define do-install
893$(make-target-directory)
894$(INSTALL_DATA) $< $@
895endef
896
897# Make the target directory if it doesn't exist, using the `mkinstalldirs'
898# script that does `mkdir -p' even if `mkdir' doesn't support that flag.
899define make-target-directory
900$(addprefix $(..)./scripts/mkinstalldirs ,\
901 $(filter-out $(wildcard $(@D:%/=%)),$(@D:%/=%)))
902endef
903
904# Any directory (parent or subdir) should install libc.a; this way
905# "make install" in a subdir is guaranteed to install everything it changes.
906installed-libcs := $(foreach o,$(filter-out .os,$(object-suffixes-for-libc)),\
907 $(inst_libdir)/$(patsubst %,$(libtype$o),\
908 $(libprefix)$(libc-name)))
909install: $(installed-libcs)
910$(installed-libcs): $(inst_libdir)/lib$(libprefix)%: lib $(+force)
911 $(make-target-directory)
912 $(INSTALL_DATA) $(common-objpfx)lib$(*:$(libc-name)%=c%) $@
1c68c264
RM
913
914define do-install-program
915$(make-target-directory)
916$(INSTALL_PROGRAM) $< $@.new
917mv -f $@.new $@
918endef
919
920define do-install-script
921$(make-target-directory)
922$(INSTALL_SCRIPT) $< $@.new
923mv -f $@.new $@
924endef
925
926install-lib.so := $(filter %.so,$(install-lib:%_pic.a=%.so))
927install-lib := $(filter-out %.so %_pic.a,$(install-lib))
928
929ifeq (yes,$(build-shared))
930# Find which .so's have versions.
931versioned := $(strip $(foreach so,$(install-lib.so),\
932 $(patsubst %,$(so),$($(so)-version))))
933
934install-lib.so-versioned := $(filter $(versioned), $(install-lib.so))
935install-lib.so-unversioned := $(filter-out $(versioned), $(install-lib.so))
936
cc8bfce9
RM
937# For versioned libraries, we install three files:
938# $(inst_libdir)/libfoo.so -- for linking, symlink or ld script
939# $(inst_slibdir)/libfoo.so.NN -- for loading by SONAME, symlink
940# $(inst_slibdir)/libfoo-X.Y.Z.so -- the real shared object file
48da0b21 941lib-version := $(firstword $($(subdir)-version) $(version))
cc8bfce9
RM
942install-lib-nosubdir: $(install-lib.so-unversioned:%=$(inst_slibdir)/%) \
943 $(foreach L,$(install-lib.so-versioned),\
944 $(inst_libdir)/$L \
48da0b21 945 $(inst_slibdir)/$(L:.so=)-$(lib-version).so \
cc8bfce9 946 $(inst_slibdir)/$L$($L-version))
1c68c264
RM
947
948# Install all the unversioned shared libraries.
949$(install-lib.so-unversioned:%=$(inst_slibdir)/%): $(inst_slibdir)/%.so: \
950 $(objpfx)%.so $(+force)
951 $(do-install-program)
952
953ifneq ($(findstring -s,$(LN_S)),)
954define make-link
955rm -f $@.new
956$(SHELL) $(..)scripts/rellns-sh $< $@.new
957mv -f $@.new $@
958endef
959else
960# If we have no symbolic links don't bother with rellns-sh.
961define make-link
962rm -f $@.new
963$(LN_S) $< $@.new
964mv -f $@.new $@
965endef
966endif
967
968ifeq (yes,$(build-shared))
969ifeq (no,$(cross-compiling))
4134b50d
JM
970symbolic-link-prog := $(elf-objpfx)sln
971symbolic-link-list := $(elf-objpfx)symlink.list
1c68c264 972define make-shlib-link
aaa8cb4b 973echo `$(..)scripts/rellns-sh -p $< $@` $@ >> $(symbolic-link-list)
1c68c264
RM
974endef
975else # cross-compiling
976# We need a definition that can be used by elf/Makefile's install rules.
977symbolic-link-prog = $(LN_S)
978endif
979endif
980ifndef make-shlib-link
981define make-shlib-link
982rm -f $@
aaa8cb4b 983$(LN_S) `$(..)scripts/rellns-sh -p $< $@` $@
1c68c264
RM
984endef
985endif
986
987ifdef libc.so-version
988# For a library specified to be version N, install three files:
989# libc.so -> libc.so.N (e.g. libc.so.6)
990# libc.so.6 -> libc-VERSION.so (e.g. libc-1.10.so)
991
992$(inst_slibdir)/libc.so$(libc.so-version): $(inst_slibdir)/libc-$(version).so \
993 $(+force)
994 $(make-shlib-link)
995$(inst_slibdir)/libc-$(version).so: $(common-objpfx)libc.so $(+force)
996 $(do-install-program)
997install: $(inst_slibdir)/libc.so$(libc.so-version)
998
999# This fragment of linker script gives the OUTPUT_FORMAT statement
1000# for the configuration we are building. We put this statement into
1001# the linker scripts we install for -lc et al so that they will not be
1002# used by a link for a different format on a multi-architecture system.
1003$(common-objpfx)format.lds: $(..)scripts/output-format.sed \
1004 $(common-objpfx)config.make \
1005 $(common-objpfx)config.h $(..)Makerules
5c550700
RM
1006ifneq (unknown,$(output-format))
1007 echo > $@.new 'OUTPUT_FORMAT($(output-format))'
1008else
740b3dbe 1009 $(LINK.o) -shared $(sysdep-LDFLAGS) $(rtld-LDFLAGS) $(LDFLAGS.so) \
1c68c264
RM
1010 -x c /dev/null -o $@.so -Wl,--verbose -v 2>&1 \
1011 | sed -n -f $< > $@.new
5e9b6af4 1012 test -s $@.new
1c68c264 1013 rm -f $@.so
5c550700 1014endif
1c68c264
RM
1015 mv -f $@.new $@
1016common-generated += format.lds
1017
1018ifndef subdir
1019# What we install as libc.so for programs to link against is in fact a
1020# link script. It contains references for the various libraries we need.
1021# The libc.so object is not complete since some functions are only defined
1022# in libc_nonshared.a.
1023# We need to use absolute paths since otherwise local copies (if they exist)
1024# of the files are taken by the linker.
1025install: $(inst_libdir)/libc.so
1026$(inst_libdir)/libc.so: $(common-objpfx)format.lds \
1027 $(common-objpfx)libc.so$(libc.so-version) \
1028 $(inst_libdir)/$(patsubst %,$(libtype.oS),\
1029 $(libprefix)$(libc-name)) \
1030 $(+force)
1031 (echo '/* GNU ld script';\
1032 echo ' Use the shared library, but some functions are only in';\
1033 echo ' the static library, so try that secondarily. */';\
1034 cat $<; \
1035 echo 'GROUP ( $(slibdir)/libc.so$(libc.so-version)' \
1036 '$(libdir)/$(patsubst %,$(libtype.oS),$(libprefix)$(libc-name))'\
04eed2b0 1037 ' AS_NEEDED (' $(rtlddir)/$(rtld-installed-name) ') )' \
1c68c264
RM
1038 ) > $@.new
1039 mv -f $@.new $@
1040
1041endif
1042
1043else
1044install: $(inst_slibdir)/libc.so
1045$(inst_slibdir)/libc.so: $(common-objpfx)libc.so $(+force)
1046 $(do-install-program)
1047endif
1048
1049ifneq (,$(versioned))
1050# Produce three sets of rules as above for all the smaller versioned libraries.
1051
1052define o-iterator-doit
1053$(inst_libdir)/$o: $(inst_slibdir)/$o$($o-version) $(+force); $$(make-link)
1054endef
2afbfec4
RM
1055object-suffixes-left := $(filter-out $(install-lib-ldscripts),$(versioned))
1056ifneq (,$(object-suffixes-left))
1c68c264 1057include $(o-iterator)
2afbfec4 1058endif
1c68c264
RM
1059
1060# Make symlinks in the build directory, because the versioned names might
1061# be referenced by a DT_NEEDED in another library.
1062define o-iterator-doit
1063$(objpfx)$o$($o-version): $(objpfx)$o; $$(make-link)
1064endef
1065object-suffixes-left := $(versioned)
1066include $(o-iterator)
1067
1068generated += $(foreach o,$(versioned),$o$($o-version))
1069
1070ifeq (,$($(subdir)-version))
1071define o-iterator-doit
1072$(inst_slibdir)/$o$($o-version): $(inst_slibdir)/$(o:.so=)-$(version).so \
1073 $(+force);
1074 $$(make-shlib-link)
1075endef
1076object-suffixes-left := $(versioned)
1077include $(o-iterator)
1078
1079define o-iterator-doit
1080$(inst_slibdir)/$(o:.so=)-$(version).so: $(objpfx)$o $(+force);
1081 $$(do-install-program)
1082endef
1083object-suffixes-left := $(versioned)
1084include $(o-iterator)
1085else
1086define o-iterator-doit
1087$(inst_slibdir)/$o$($o-version): \
1088 $(inst_slibdir)/$(o:.so=)-$($(subdir)-version).so $(+force);
1089 $$(make-shlib-link)
1090endef
1091object-suffixes-left := $(versioned)
1092include $(o-iterator)
1093
1094define o-iterator-doit
1095$(inst_slibdir)/$(o:.so=)-$($(subdir)-version).so: $(objpfx)$o $(+force);
1096 $$(do-install-program)
1097endef
1098object-suffixes-left := $(versioned)
1099include $(o-iterator)
1100endif
1101endif
1102
1103define do-install-so
1104$(do-install-program)
1105$(patsubst %,ln -s -f $(@F) $(@D)/$(patsubst %$*.so,%,$(<F))$(libprefix)$*.so,\
1106 $(filter-out %.so,$@))
1107endef
1108
1109so-versions := $(sort $(foreach so,$(install-lib.so),.so$($(so)-version)))
1110$(foreach v,$(so-versions),\
1111 $(inst_slibdir)/lib$(libprefix)%$v): $(common-objpfx)lib%.so \
1112 $(+force)
1113 $(do-install-so)
1114$(foreach v,$(so-versions),\
1115 $(inst_slibdir)/$(libprefix)%$v): $(common-objpfx)%.so $(+force)
1116 $(do-install-so)
1117endif
1118
1119ifdef install-bin
1120$(addprefix $(inst_bindir)/,$(install-bin)): \
1121 $(inst_bindir)/%: $(objpfx)% $(+force)
1122 $(do-install-program)
1123endif
1124ifdef install-bin-script
1125$(addprefix $(inst_bindir)/,$(install-bin-script)): \
1126 $(inst_bindir)/%: $(objpfx)% $(+force)
1127 $(do-install-script)
1128endif
1129ifdef install-rootsbin
1130$(addprefix $(inst_rootsbindir)/,$(install-rootsbin)): \
1131 $(inst_rootsbindir)/%: $(objpfx)% $(+force)
1132 $(do-install-program)
1133endif
1134ifdef install-sbin
1135$(addprefix $(inst_sbindir)/,$(install-sbin)): \
1136 $(inst_sbindir)/%: $(objpfx)% $(+force)
1137 $(do-install-program)
1138endif
1139ifdef install-lib
1140install-lib.a := $(filter lib%.a,$(install-lib))
1141install-lib-non.a := $(filter-out lib%.a,$(install-lib))
1142ifdef install-lib-non.a
1143$(addprefix $(inst_libdir)/$(libprefix),$(install-lib-non.a)): \
1144 $(inst_libdir)/$(libprefix)%: $(objpfx)% $(+force)
1145 $(do-install)
1146endif
1147ifdef install-lib.a
1148$(install-lib.a:lib%.a=$(inst_libdir)/lib$(libprefix)%.a): \
1149 $(inst_libdir)/lib$(libprefix)%.a: $(objpfx)lib%.a $(+force)
1150 $(do-install)
1c68c264
RM
1151endif
1152endif
1153ifdef install-data
1154$(addprefix $(inst_datadir)/,$(install-data)): $(inst_datadir)/%: % $(+force)
1155 $(do-install)
1156endif
1157headers := $(strip $(headers))
1158ifdef headers
f0cf0902
RM
1159# This implicit rule installs headers from the source directory.
1160# It may be ignored in preference to rules from sysd-rules to find
1161# headers in the sysdeps tree.
1162$(inst_includedir)/%.h: $(objpfx)%.h $(+force)
1c68c264 1163 $(do-install)
4962050e
JM
1164$(inst_includedir)/%.h: $(common-objpfx)%.h $(+force)
1165 $(do-install)
f0cf0902
RM
1166$(inst_includedir)/%.h: %.h $(+force)
1167 $(do-install)
1168$(inst_includedir)/%.h: $(..)include/%.h $(+force)
1169 $(do-install)
1170headers-nonh := $(filter-out %.h,$(headers))
1171ifdef headers-nonh
1172$(addprefix $(inst_includedir)/,$(headers-nonh)): $(inst_includedir)/%: \
1173 % $(+force)
1174 $(do-install)
1175endif # headers-nonh
1c68c264
RM
1176endif # headers
1177
1178.PHONY: install-bin-nosubdir install-bin-script-nosubdir \
1179 install-rootsbin-nosubdir install-sbin-nosubdir install-lib-nosubdir \
1180 install-data-nosubdir install-headers-nosubdir
1181install-bin-nosubdir: $(addprefix $(inst_bindir)/,$(install-bin))
1182install-bin-script-nosubdir: $(addprefix $(inst_bindir)/,$(install-bin-script))
1183install-rootsbin-nosubdir: \
1184 $(addprefix $(inst_rootsbindir)/,$(install-rootsbin))
1185install-sbin-nosubdir: $(addprefix $(inst_sbindir)/,$(install-sbin))
1186install-lib-nosubdir: $(addprefix $(inst_libdir)/,\
1187 $(patsubst lib%.a,lib$(libprefix)%.a,$(install-lib.a)) \
1188 $(addprefix $(libprefix),$(install-lib-non.a)))
1189install-data-nosubdir: $(addprefix $(inst_datadir)/,$(install-data))
1190install-headers-nosubdir: $(addprefix $(inst_includedir)/,$(headers))
1191install-others-nosubdir: $(install-others)
80d4c3b0 1192install-others-programs-nosubdir: $(install-others-programs)
1c68c264
RM
1193
1194# We need all the `-nosubdir' targets so that `install' in the parent
1195# doesn't depend on several things which each iterate over the subdirs.
1196# This rule makes `install-FOO' always use `install-FOO-nosubdir' as a
1197# subroutine. Then in the parent `install-FOO' also causes subdir makes.
1198install-%:: install-%-nosubdir ;
1199
1200.PHONY: install install-no-libc.a-nosubdir
80d4c3b0 1201install-no-libc.a-nosubdir: install-headers-nosubdir install-data-nosubdir \
1c68c264 1202 install-lib-nosubdir install-others-nosubdir
80d4c3b0
RM
1203ifeq ($(build-programs),yes)
1204install-no-libc.a-nosubdir: install-bin-nosubdir install-bin-script-nosubdir \
1205 install-rootsbin-nosubdir install-sbin-nosubdir \
1206 install-others-programs-nosubdir
1c68c264
RM
1207endif
1208install: install-no-libc.a-nosubdir
1209\f
c1820385 1210# Command to compile $< using the native libraries.
1c68c264
RM
1211define native-compile
1212$(make-target-directory)
1c68c264 1213$(BUILD_CC) $($(basename $(<F))-CFLAGS) $(ALL_BUILD_CFLAGS) \
2ed8cda2 1214 $< $(OUTPUT_OPTION) $(BUILD_LDFLAGS)
1c68c264
RM
1215endef
1216
1c68c264 1217# We always want to use configuration definitions.
2ed8cda2
JM
1218ALL_BUILD_CFLAGS = $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) -D_GNU_SOURCE \
1219 -DIS_IN_build -include $(common-objpfx)config.h
1c68c264
RM
1220
1221# Support the GNU standard name for this target.
1222.PHONY: check
1223check: tests
1224# Special target to run tests which cannot be run unconditionally.
1225# Maintainers should use this target.
1226.PHONY: xcheck
1227xcheck: xtests
1228
1229all-nonlib = $(strip $(tests) $(xtests) $(test-srcs) $(test-extras) $(others))
1230ifneq (,$(all-nonlib))
9cd47470 1231cpp-srcs-left = $(all-nonlib)
1c68c264 1232lib := nonlib
7735afa2 1233include $(patsubst %,$(..)cppflags-iterator.mk,$(cpp-srcs-left))
1c68c264
RM
1234endif
1235
1c68c264 1236
3f2e46a4 1237ifeq ($(build-shared),yes)
1c68c264
RM
1238# Generate normalized lists of symbols, versions, and data sizes.
1239# This is handy for checking against existing library binaries.
1240
1241%.symlist: $(..)scripts/abilist.awk %.dynsym
1242 LC_ALL=C $(AWK) -f $^ > $@T
1243 mv -f $@T $@
1244
1245%.dynsym: %.so
55f11534 1246 LC_ALL=C $(OBJDUMP) --dynamic-syms $< > $@T
1c68c264
RM
1247 mv -f $@T $@
1248
1695c773
AZ
1249# A sysdeps/.../Makefile can set abilist-pattern to something like
1250# %-foo.abilist to look for libc-foo.abilist instead of libc.abilist.
1251# This makes sense if multiple ABIs can be most cleanly supported by a
1252# configuration without using separate sysdeps directories for each.
1253ifdef abilist-pattern
1254vpath $(abilist-pattern) $(+sysdep_dirs)
1255endif
1256
8dbd5d7b
DM
1257vpath %.abilist $(+sysdep_dirs)
1258
a65ef2ae
AJ
1259# The .PRECIOUS rule prevents the files built by an implicit rule whose
1260# target pattern is %.symlist from being considered "intermediate files"
1261# and automatically removed. We only want these files to be removed by
1262# 'make clean', which is handled by the 'generated' variable.
1263.PRECIOUS: %.symlist
1264generated += $(extra-libs:=.symlist)
1265
1695c773 1266ifdef abilist-pattern
1b6dd3f1
JM
1267$(objpfx)check-abi-%.out: $(common-objpfx)config.make $(abilist-pattern) \
1268 $(objpfx)%.symlist
f0881698
JM
1269 $(check-abi-pattern); \
1270 $(evaluate-test)
1b6dd3f1
JM
1271$(objpfx)check-abi-%.out: $(common-objpfx)config.make $(abilist-pattern) \
1272 $(common-objpfx)%.symlist
f0881698
JM
1273 $(check-abi-pattern); \
1274 $(evaluate-test)
1695c773 1275endif
1b6dd3f1
JM
1276$(objpfx)check-abi-%.out: $(common-objpfx)config.make %.abilist \
1277 $(objpfx)%.symlist
f0881698
JM
1278 $(check-abi); \
1279 $(evaluate-test)
1b6dd3f1
JM
1280$(objpfx)check-abi-%.out: $(common-objpfx)config.make %.abilist \
1281 $(common-objpfx)%.symlist
f0881698
JM
1282 $(check-abi); \
1283 $(evaluate-test)
1695c773 1284define check-abi-pattern
1b6dd3f1
JM
1285 diff -p -U 0 $(filter $(abilist-pattern),$^) $(filter %.symlist,$^) \
1286 > $@
1695c773 1287endef
9ae10332 1288define check-abi
1b6dd3f1 1289 diff -p -U 0 $(filter %.abilist,$^) $(filter %.symlist,$^) > $@
9ae10332 1290endef
1c68c264 1291
1695c773
AZ
1292ifdef abilist-pattern
1293update-abi-%: $(objpfx)%.symlist $(abilist-pattern)
1294 $(update-abi-pattern)
1295update-abi-%: $(common-objpfx)%.symlist $(abilist-pattern)
1296 $(update-abi-pattern)
1297endif
8dbd5d7b 1298update-abi-%: $(objpfx)%.symlist %.abilist
9ae10332 1299 $(update-abi)
8dbd5d7b 1300update-abi-%: $(common-objpfx)%.symlist %.abilist
9ae10332 1301 $(update-abi)
1695c773
AZ
1302define update-abi-pattern
1303@if cmp -s $^ 2> /dev/null; \
1304 then \
1305 echo '+++ $(filter $(abilist-pattern),$^) is unchanged'; \
1306 else cp -f $^; \
1307 echo '*** Now check $(filter $(abilist-pattern),$^) changes for correctness ***'; \
1308 fi
1309endef
9ae10332 1310define update-abi
8dbd5d7b
DM
1311@if cmp -s $^ 2> /dev/null; \
1312 then \
1313 echo '+++ $(filter %.abilist,$^) is unchanged'; \
1314 else cp -f $^; \
1315 echo '*** Now check $(filter %.abilist,$^) changes for correctness ***'; \
9ae10332
RM
1316 fi
1317endef
1c68c264
RM
1318
1319.PHONY: update-abi check-abi
1320update-abi: $(patsubst %.so,update-abi-%,$(install-lib.so-versioned))
f214606a
JM
1321check-abi-list = $(patsubst %.so,$(objpfx)check-abi-%.out, \
1322 $(install-lib.so-versioned))
1323check-abi: $(check-abi-list)
1c68c264
RM
1324ifdef subdir
1325subdir_check-abi: check-abi
1326subdir_update-abi: update-abi
1327else
1328check-abi: subdir_check-abi
0813022c
SP
1329 if grep -q '^FAIL:' $(objpfx)*/check-abi*.test-result; then \
1330 cat $(objpfx)*/check-abi*.out && exit 1; fi
1c68c264
RM
1331update-abi: subdir_update-abi
1332endif
1333
1c68c264 1334ifeq ($(subdir),elf)
1b6dd3f1 1335check-abi: $(objpfx)check-abi-libc.out
f214606a 1336tests-special += $(objpfx)check-abi-libc.out
1c68c264
RM
1337update-abi: update-abi-libc
1338common-generated += libc.symlist
1339endif
1340
fd54683c 1341ifeq ($(build-shared),yes)
94659495 1342ifdef subdir
f214606a 1343tests-special += $(check-abi-list)
94659495
RM
1344endif
1345endif
1346
1c68c264 1347endif
67c37987 1348\f
e0a3ed4f
RM
1349# These will have been set by sysdeps/posix/Makefile.
1350L_tmpnam ?= 1
1351TMP_MAX ?= 0
1352L_ctermid ?= 1
1353L_cuserid ?= 1
1354
9ae10332
RM
1355stdio_lim = $(common-objpfx)bits/stdio_lim.h
1356
1357$(stdio_lim:lim.h=%.h) $(stdio_lim:lim.h=%.d): $(stdio_lim:lim.h=%.st); @:
1358$(stdio_lim:h=st): $(..)stdio-common/stdio_lim.h.in $(..)Rules \
1359 $(common-objpfx)config.make
1360 $(make-target-directory)
7cd72ad3
RM
1361 { echo '#include "$(..)posix/bits/posix1_lim.h"'; \
1362 echo '#define _LIBC 1'; \
1363 echo '#include "$(..)misc/sys/uio.h"'; } | \
1364 $(CC) -E -dM -MD -MP -MF $(@:st=dT) -MT '$(@:st=h) $(@:st=d)' \
61653dfb 1365 $(CPPUNDEFS) $(+includes) -xc - -o $(@:st=hT)
7cd72ad3
RM
1366 sed $(sed-remove-objpfx) $(sed-remove-dotdot) \
1367 $(@:st=dT) > $(@:st=dt)
1368 mv -f $(@:st=dt) $(@:st=d)
9ae10332
RM
1369 fopen_max=`sed -n 's/^#define OPEN_MAX //1p' $(@:st=hT)`; \
1370 filename_max=`sed -n 's/^#define PATH_MAX //1p' $(@:st=hT)`; \
1371 iov_max=`sed -n 's/^#define UIO_MAXIOV //p' $(@:st=hT)`; \
1372 fopen_max=$${fopen_max:-16}; \
1373 filename_max=$${filename_max:-1024}; \
7cd72ad3 1374 if [ -z "$$iov_max" ]; then \
9ae10332
RM
1375 define_iov_max="# undef IOV_MAX"; \
1376 else \
1377 define_iov_max="# define IOV_MAX $$iov_max"; \
1378 fi; \
1379 sed -e "s/@FOPEN_MAX@/$$fopen_max/" \
1380 -e "s/@FILENAME_MAX@/$$filename_max/" \
1381 -e "s/@L_tmpnam@/$(L_tmpnam)/" \
1382 -e "s/@TMP_MAX@/$(TMP_MAX)/" \
1383 -e "s/@L_ctermid@/$(L_ctermid)/" \
1384 -e "s/@L_cuserid@/$(L_cuserid)/" \
1385 -e "s/@define_IOV_MAX@/$$define_iov_max/" \
1386 $< > $(@:st=h.new)
1387 $(move-if-change) $(@:st=h.new) $(@:st=h)
1388# Remove these last so that they can be examined if something went wrong.
1389 rm -f $(@:st=hT) $(@:st=dT) $(@:st=dt)
1390 touch $@
1391# Get dependencies.
1392ifndef no_deps
1393-include $(stdio_lim:h=d)
1394endif
1395common-generated += bits/stdio_lim.h bits/stdio_lim.d bits/stdio_lim.st
1c68c264 1396\f
1c68c264
RM
1397FORCE:
1398
1c68c264
RM
1399.PHONY: echo-headers
1400echo-headers:
1401 @echo $(headers)
1402
220addf7
RM
1403%.bz2: %; bzip2 -9vk $<
1404%.gz: %; gzip -9vnc $< > $@.new && mv -f $@.new $@
6cfe8609 1405%.xz: %; xz -9evk $<
1c68c264
RM
1406\f
1407# Common cleaning targets.
1408
1409.PHONY: common-mostlyclean common-clean mostlyclean clean do-tests-clean
1410clean: common-clean
1411mostlyclean: common-mostlyclean
1412
1413do-tests-clean:
1414 -rm -f $(addprefix $(objpfx),$(addsuffix .out,$(tests) $(xtests) \
591aeaf7
TD
1415 $(test-srcs)) \
1416 $(addsuffix .test-result,$(tests) \
1417 $(xtests) \
1418 $(test-srcs)))
1c68c264
RM
1419
1420# Remove the object files.
1421common-mostlyclean:
1422 -rm -f $(addprefix $(objpfx),$(tests) $(xtests) $(test-srcs) \
1423 $(others) $(sysdep-others) stubs \
1424 $(addsuffix .o,$(tests) $(xtests) \
1425 $(test-srcs) $(others) \
1426 $(sysdep-others)) \
1c68c264 1427 $(addsuffix .out,$(tests) $(xtests) \
591aeaf7
TD
1428 $(test-srcs)) \
1429 $(addsuffix .test-result,$(tests) \
1430 $(xtests) \
1431 $(test-srcs)))
376e973a
UD
1432 -rm -f $(addprefix $(objpfx),$(extra-objs) $(extra-test-objs) \
1433 $(install-lib) $(install-lib.so) \
1c68c264
RM
1434 $(install-lib.so:%.so=%_pic.a))
1435 -rm -f core
1436 -rm -f $(objpfx)rtld-*.os
1437 $(rmobjs)
1438define rmobjs
1439$(foreach o,$(object-suffixes-for-libc),
1440-rm -f $(objpfx)stamp$o $(o-objects))
1441endef
1442
1443# Also remove the dependencies and generated source files.
1444common-clean: common-mostlyclean
d73f5331
RM
1445 -rm -f $(addprefix $(objpfx),$(generated))
1446 -rm -f $(objpfx)*.d $(objpfx)*.dt
1c68c264
RM
1447 -rm -fr $(addprefix $(objpfx),$(generated-dirs))
1448 -rm -f $(addprefix $(common-objpfx),$(common-generated))
e5a6e567 1449 -rm -f $(gen-as-const-headers:%.sym=$(common-objpfx)%.h)
1c68c264
RM
1450\f
1451# Produce a file `stubs' which contains `#define __stub_FUNCTION'
b830319d 1452# for each function which is a stub.
1c68c264
RM
1453
1454ifdef objpfx
1455.PHONY: stubs # The parent Makefile calls this target.
1456stubs: $(objpfx)stubs
1457endif
561bcb80
RM
1458objs-for-stubs := $(foreach o,$(object-suffixes-for-libc),$(o-objects)) \
1459 $(addprefix $(objpfx),$(extra-objs))
1460$(objpfx)stubs: $(objs-for-stubs)
1461ifneq (,$(strip $(objs-for-stubs)))
ae46b677 1462 (cd $(objpfx).; $(OBJDUMP) -h $(patsubst $(objpfx)%,%,$^)) | \
561bcb80 1463 $(AWK) '/\.gnu\.glibc-stub\./ { \
92ad15a8 1464 sub(/\.gnu\.glibc-stub\./, "", $$2); \
561bcb80
RM
1465 stubs[$$2] = 1; } \
1466 END { for (s in stubs) print "#define __stub_" s }' > $@T
1c68c264 1467 mv -f $@T $@
f291538f
RM
1468else
1469 > $@
1470endif
1c68c264 1471\f
1c68c264
RM
1472ifneq (,$(strip $(gpl2lgpl)))
1473ifneq (,$(wildcard $(..)gpl2lgpl.sed))
1474# Snarf from the master source and frob the copying notice.
1475$(gpl2lgpl): %: $(..)gpl2lgpl.sed /home/gd/gnu/lib/%
1476 sed -f $^ > $@-tmp
1477# So I don't edit them by mistake.
1478 chmod a-w $@-tmp
1479 mv -f $@-tmp $@
1c68c264
RM
1480endif
1481endif
1482
1483# Local Variables:
1484# mode: makefile
1485# End: