fix regression from a745c4bfc8a9b5db4e48387170da0dc1d39e3abe
[uclibc-ng.git] / Makerules
blobfd40e6c7b2324876eafd8d31d1742129bfdc3a68
2 # Licensed under LGPL v2.1, see the file COPYING.LIB in this tarball for details.
5 .SUFFIXES: .c .S .o .os .oS .so .a .s .i
7 PHONY := FORCE
9 .PHONY: dummy $(PHONY) subdirs \
10         all $(clean_targets) \
11         config dist menuconfig oldconfig release \
12         utils help
14 # order is important, the stripping uses STRIP_FLAGS for lib-so, but not for lib-a
15 ifeq ($(HAVE_SHARED),y)
16 .LIBPATTERNS: "lib%.so"
17 libs: $(lib-so-y) $(lib-a-y)
18 $(lib-so-y): | $(interp)
19 else
20 .LIBPATTERNS: "lib%.a"
21 ifeq ($(UCLIBC_FORMAT_SHARED_FLAT),y)
22 libs: $(lib-gdb-y)
23 endif
24 libs: $(lib-a-y)
25 endif
26 objs: all_objs
27 $(lib-so-y) $(lib-a-y): | $(top_builddir)lib
29 # apply unconditional per-directory flags
30 define add_IS_IN_lib
31 ifneq ($(strip $(2)),)
32 __add_IS_IN_lib := $(2)
33 __add_IS_IN_lib += $(2:.o=.i) $(2:.os=.i) $(2:.oS=.i)
34 __add_IS_IN_lib += $(2:.o=.s) $(2:.os=.s) $(2:.oS=.s)
35 $$(__add_IS_IN_lib): CFLAGS-for-library-members:=$(CFLAGS-$(1)) -DIN_LIB=$(word 1,$(subst /, ,$(1)))
36 endif
37 endef
38 $(eval $(call add_IS_IN_lib,rtld,$(ldso-y)))
39 $(eval $(call add_IS_IN_lib,libc,$(libc-y) $(libc-static-y) $(libc-y:.o=.os) $(libc-shared-y) $(libc-nonshared-y)))
40 $(eval $(call add_IS_IN_lib,libcrypt,$(libcrypt-a-y) $(libcrypt-so-y)))
41 $(eval $(call add_IS_IN_lib,libdl,$(libdl-a-y) $(libdl-so-y)))
42 $(eval $(call add_IS_IN_lib,libm,$(libm-a-y) $(libm-so-y)))
43 $(eval $(call add_IS_IN_lib,libpthread/$(PTNAME),$(libpthread-a-y) $(libpthread-so-y) $(libpthread-nonshared-y)))
44 $(eval $(call add_IS_IN_lib,libpthread/$(PTNAME)_db,$(libthread_db-a-y) $(libthread_db-so-y)))
45 $(eval $(call add_IS_IN_lib,librt,$(librt-a-y) $(librt-so-y)))
46 $(eval $(call add_IS_IN_lib,libutil,$(libutil-a-y) $(libutil-so-y)))
47 $(eval $(call add_IS_IN_lib,libubacktrace,$(libubacktrace-a-y) $(libubacktrace-so-y)))
48 $(eval $(call add_IS_IN_lib,libuargp,$(libuargp-a-y) $(libuargp-so-y)))
49 $(eval $(call add_IS_IN_lib,libiconv,$(libiconv-a-y) $(libiconv-so-y)))
50 $(eval $(call add_IS_IN_lib,libintl,$(libintl-a-y) $(libintl-so-y)))
52 shared_objs = $(libc-y:.o=.os) $(libc-shared-y) $(libc-nonshared-y) \
53         $(libcrypt-so-y) $(libdl-so-y) $(libm-so-y) \
54         $(libpthread-so-y) $(libpthread-nonshared-y) $(libthread_db-so-y) \
55         $(librt-so-y) $(ldso-y) $(libutil-so-y) $(libubacktrace-so-y) \
56         $(libuargp-so-y) $(libiconv-so-y) $(libintl-so-y)
58 ar_objs =  $(libc-y) $(libc-static-y) $(libcrypt-a-y) \
59         $(libdl-a-y) $(libm-a-y) $(libpthread-a-y) $(libthread_db-a-y) \
60         $(librt-a-y) $(libutil-a-y) $(libubacktrace-a-y) $(libuargp-a-y) \
61         $(libiconv-a-y) $(libintl-a-y)
62 ifeq ($(DOPIC),y)
63 ar_objs := $(ar_objs:.o=.os)
64 endif
65 flat_objs = $(lib-gdb-y)
67 ifeq ($(HAVE_SHARED),y)
68 all_objs: $(sort $(shared_objs) $(ar_objs))
69 else
70 all_objs: $(ar_objs)
71 endif
72 $(shared_objs) $(ar_objs): | $(sub_headers)
74 define objects_with_syms
75         $(foreach o,$(2),$(if $(shell $(NM) $(1) $(o) | grep .),$(o)))
76 endef
78 headers-y: $(headers-y)
79         @true
81 MAKEFLAGS += --no-print-directory
82 SHELL_SET_X := set +x
83 define rel_srcdir
84         $(shell $(CONFIG_SHELL) $(top_srcdir)/extra/scripts/relative_path.sh $(@D) .)
85 endef
86 ifneq ($(findstring s,$(MAKEFLAGS)),)
87 export MAKE_IS_SILENT := y
88 SECHO := -@false
89 DISP := sil
90 Q := @
91 else
92 export MAKE_IS_SILENT := n
93 SECHO := @echo
94 ifneq ($(V)$(VERBOSE),)
95 ifeq ($(V),2)
96 DISP := bri# brief, like pur but with defines
97 Q := @
98 else
99 SHELL_SET_X := set -x
100 DISP := ver
101 Q :=
102 endif
103 else
104 DISP := pur
105 Q := @
106 endif
107 endif
109 show_objs = $(subst $(top_builddir),,$(subst ../,,$@))
110 define show_defs
111         $(filter -D%,$(1))
112 endef
113 define show_ldflags
114         $(subst $(comma), ,$(subst -Wl$(comma),,$(filter -Wl%,$(1))))
115 endef
117 pur_disp_compile.c = echo "  "CC $(show_objs)
118 pur_disp_compile.i = echo "  "CPP $(show_objs)
119 pur_disp_compile.s = echo "  "CC-S $(show_objs)
120 pur_disp_compile.u = echo "  "CC $(show_objs)
121 pur_disp_compile.S = echo "  "AS $(show_objs)
122 pur_disp_compile.m = $(pur_disp_compile.c)
123 pur_disp_compile.mi= echo "  "CPP-m $(show_objs)
124 pur_disp_compile-m = echo "  "CC-m $(show_objs)
125 pur_disp_hcompile.u= echo "  "HOSTCC $(show_objs)
126 pur_disp_hcompile.o= echo "  "HOSTCC-o $(show_objs)
127 pur_disp_strip     = echo "  "STRIP $(STRIP_FLAGS) $@
128 pur_disp_t_strip   = echo "  "STRIP $(STRIP_FLAGS) $@
129 pur_disp_ar        = echo "  "AR $(ARFLAGS) $@
130 pur_disp_ld        = echo "  "LD $(1)
131 pur_disp_ln        = echo "  "LN $(show_objs)
132 pur_disp_mkdir     = echo "  "MKDIR $(show_objs)
133 pur_disp_gen       = echo "  "GEN $(show_objs)
134 pur_disp_install   = echo "  "INSTALL $(1)
135 pur_disp_unifdef   = echo "  "UNIFDEF $(show_objs)
136 pur_disp_rm        = echo "  "CLEAN $(subst CLEAN_,,$(patsubst HEADERCLEAN_%,include \(%\),$@))
138 sil_disp_compile.c = true
139 sil_disp_compile.i = true
140 sil_disp_compile.s = true
141 sil_disp_compile.u = true
142 sil_disp_compile.S = true
143 sil_disp_compile.m = true
144 sil_disp_compile.mi= true
145 sil_disp_compile-m = true
146 sil_disp_hcompile.u= true
147 sil_disp_hcompile.o= true
148 sil_disp_strip     = true
149 sil_disp_t_strip   = true
150 sil_disp_ar        = true
151 sil_disp_ld        = true
152 sil_disp_ln        = true
153 sil_disp_mkdir     = true
154 sil_disp_gen       = true
155 sil_disp_install   = true
156 sil_disp_unifdef   = true
157 sil_disp_rm        = true
159 bri_disp_compile.c = $(pur_disp_compile.c) $(call show_defs,$(cmd_compile.c))
160 bri_disp_compile.i = $(pur_disp_compile.i) $(call show_defs,$(cmd_compile.i))
161 bri_disp_compile.s = $(pur_disp_compile.s) $(call show_defs,$(cmd_compile.s))
162 bri_disp_compile.u = $(pur_disp_compile.u) $(call show_defs,$(cmd_compile.u))
163 bri_disp_compile.S = $(pur_disp_compile.S) $(call show_defs,$(cmd_compile.S))
164 bri_disp_compile.m = $(pur_disp_compile.m) $(call show_defs,$(cmd_compile.m))
165 bri_disp_compile.mi = $(pur_disp_compile.mi) $(call show_defs,$(cmd_compile.mi))
166 bri_disp_compile-m = $(pur_disp_compile-m) $(call show_defs,$(cmd_compile-m))
167 bri_disp_hcompile.u = $(pur_disp_hcompile.u) $(call show_defs,$(cmd_hcompile.u))
168 bri_disp_hcompile.o = $(pur_disp_hcompile.o) $(call show_defs,$(cmd_hcompile.o))
169 bri_disp_strip = $(pur_disp_strip)
170 bri_disp_t_strip = $(pur_disp_t_strip)
171 bri_disp_ar = $(pur_disp_ar)
172 bri_disp_ld = $(pur_disp_ld) $(call show_ldflags,$(cmd_ld))
173 bri_disp_ln = $(pur_disp_ln)
174 bri_disp_mkdir = $(pur_disp_mkdir)
175 bri_disp_gen = $(pur_disp_gen)
176 bri_disp_install = $(pur_disp_install)
177 bri_disp_unifdef = $(pur_disp_unifdef)
178 bri_disp_rm = $(pur_disp_rm)
180 esc=$(subst ','\'',$(1))
181 # ')
182 ver_disp_compile.c = echo '$(call esc,$(cmd_compile.c))'
183 ver_disp_compile.i = echo '$(call esc,$(cmd_compile.i))'
184 ver_disp_compile.s = echo '$(call esc,$(cmd_compile.s))'
185 ver_disp_compile.u = echo '$(call esc,$(cmd_compile.u))'
186 ver_disp_compile.S = echo '$(call esc,$(cmd_compile.S))'
187 ver_disp_compile.m = echo '$(call esc,$(cmd_compile.m))'
188 ver_disp_compile.mi= echo '$(call esc,$(cmd_compile.mi))'
189 ver_disp_compile-m = echo '$(call esc,$(cmd_compile-m))'
190 ver_disp_hcompile.u= echo '$(call esc,$(cmd_hcompile.u))'
191 ver_disp_hcompile.o= echo '$(call esc,$(cmd_hcompile.o))'
192 ver_disp_strip     = echo '$(call esc,$(cmd_strip))'
193 ver_disp_t_strip   = echo '$(call esc,$(cmd_t_strip))'
194 ver_disp_ar        = echo '$(call esc,$(cmd_ar))'
195 ver_disp_ld        =
196 ver_disp_ln        =
197 ver_disp_mkdir     =
198 ver_disp_gen       =
199 ver_disp_install   =
200 ver_disp_unifdef   = echo '$(call esc,$(cmd_unifdef))'
201 ver_disp_rm        =
203 disp_compile.c = $($(DISP)_disp_compile.c)
204 disp_compile.i = $($(DISP)_disp_compile.i)
205 disp_compile.s = $($(DISP)_disp_compile.s)
206 disp_compile.u = $($(DISP)_disp_compile.u)
207 disp_compile.S = $($(DISP)_disp_compile.S)
208 disp_compile.m = $($(DISP)_disp_compile.m)
209 disp_compile.mi= $($(DISP)_disp_compile.mi)
210 disp_compile-m = $($(DISP)_disp_compile-m)
211 disp_hcompile.u= $($(DISP)_disp_hcompile.u)
212 disp_hcompile.o= $($(DISP)_disp_hcompile.o)
213 disp_strip     = $($(DISP)_disp_strip)
214 disp_t_strip   = $($(DISP)_disp_t_strip)
215 disp_ar        = $($(DISP)_disp_ar)
216 disp_ld        = $($(DISP)_disp_ld)
217 disp_ln        = $($(DISP)_disp_ln)
218 disp_mkdir     = $($(DISP)_disp_mkdir)
219 disp_gen       = $($(DISP)_disp_gen)
220 disp_install   = $($(DISP)_disp_install)
221 disp_unifdef   = $($(DISP)_disp_unifdef)
222 disp_rm        = $($(DISP)_disp_rm)
224 any-prereq = $(filter-out $(PHONY),$?) $(filter-out $(PHONY) $(wildcard $^),$^)
226 # ../foo/bar/baz.ext -> foo_bar_baz.ext
227 variablify = $(subst /,_,$(subst $(top_builddir),,$(1)))
228 # strip the top_builddir off everything to make the *string* idempotent for -C
229 dirify = $(subst $(top_builddir),,$(patsubst -L$(top_builddir)%,-L%,$(patsubst -I$(top_builddir)%,-I%,$(1))))
231 # True if not identical. Neither order nor whitespace nor identical flags
232 # matter.
233 compare_flags = \
234         $(strip $(filter-out $(call dirify,$(cmd_$(call variablify,$(1)))), \
235                                 $(call dirify,$(cmd_$(call variablify,$(@))))) \
236                 $(filter-out $(call dirify,$(cmd_$(call variablify,$(@)))), \
237                                 $(call dirify,$(cmd_$(call variablify,$(1))))))
239 # Rebuild if any prerequisite, the used CC or flags changed.
240 # Previously used flags are stored in the corresponding .%.dep files
241 maybe_exec = \
242                 $(if $(strip $(compare_flags) $(any-prereq)), \
243                 @set -e; \
244                 $(disp_$(1)); \
245                 $(cmd_$(1)); \
246                 echo 'cmd_$(call variablify,$@) := $(call dirify,$(cmd_$(call variablify,$1)))' >> $(dir $@).$(notdir $@).dep)
248 # collect flags of domulti prereqs
249 #collect_multi_flags = $(CFLAGS-$(notdir $(d))) $(CFLAGS-$(notdir $(patsubst %/,%,$(dir $(d)))))
250 collect_multi_flags = $(CFLAGS-$(notdir $(patsubst %/,%,$(dir $(d)))))
252 #sub_srcdir = $(word 1,$(filter-out lib extra locale libpthread,$(wordlist 1,2,$(subst /, ,$(subst $(top_srcdir),,$(dir $<))))))
254 CFLAGS_gen.dep = -MT $@ -MD -MP -MF $(dir $@).$(notdir $@).dep
256 cmd_compile.c = $(CC) -c $< -o $@ \
257     $(filter-out $(CFLAGS-OMIT-$(notdir $<)), \
258         $(CFLAGS) \
259         $(CFLAGS-for-library-members) \
260         $(CFLAGS-$(suffix $@)) \
261         $(CFLAGS-y-$(subst $(top_srcdir),,$(<D))) \
262         $(CFLAGS-$(notdir $<)) \
263         $(CFLAGS-$(notdir $@)) \
264     ) \
265         $(CFLAGS_gen.dep)
266 cmd_compile.i = $(cmd_compile.c:-c=-E -dD) $(UCLIBC_EXTRA_CPPFLAGS)
267 cmd_compile.s = $(cmd_compile.c:-c=-S)
268 cmd_compile.u = $(CC) $^ $(DEPS-$(notdir $@)) -o $@ $(CFLAGS) $(CFLAGS-$(notdir $(^D))) $(CFLAGS-$(notdir $@)) $(CFLAGS_gen.dep)
269 cmd_compile.S = $(filter-out -std=%, $(cmd_compile.c)) -D__ASSEMBLER__ $(ASFLAGS) $(ARCH_ASFLAGS) $(ASFLAGS-$(suffix $@)) $(ASFLAGS-$(notdir $<)) $(ASFLAGS-$(notdir $@))
270 cmd_compile.m = $(cmd_compile.c) -DL_$(patsubst %$(suffix $(notdir $@)),%,$(notdir $@))
271 cmd_compile.mi= $(cmd_compile.m:-c=-E -dD) $(UCLIBC_EXTRA_CPPFLAGS)
273 cmd_compile-m = $(CC) $^ -c -o $@ $(CFLAGS) $(CFLAGS-$(suffix $@)) $(CFLAGS-$(notdir $(@D))) $(CFLAGS-$(notdir $@)) $(sort $(foreach d,$(^:$(top_srcdir)=),$(collect_multi_flags)))
274 cmd_strip     = $(STRIPTOOL) $(STRIP_FLAGS) $^
275 cmd_t_strip   = $(STRIPTOOL) $(STRIP_FLAGS) $@
276 cmd_ar        = $(AR) $(ARFLAGS) $@ $(call objects_with_syms,,$^)
278 define do_ln
279         @$(disp_ln)
280         $(Q)$(LN) -fs
281 endef
283 define do_mkdir
284         @$(disp_mkdir)
285         $(Q)$(INSTALL) -d $@
286 endef
288 define do_rm
289         @$(disp_rm)
290         $(Q)$(RM)
291 endef
293 define do_awk
294         @$(disp_gen)
295         $(Q)$(AWK) -f
296 endef
298 define do_sed
299         @$(disp_gen)
300         $(Q)$(SED)
301 endef
303 compile.c = @$(call maybe_exec,compile.c)
304 compile.i =  $(call maybe_exec,compile.i)
305 compile.s =  $(call maybe_exec,compile.s)
306 compile.S = @$(call maybe_exec,compile.S)
307 compile.m = @$(call maybe_exec,compile.m)
308 compile.mi=  $(call maybe_exec,compile.mi)
309 compile-m = @$(disp_compile-m) ; $(cmd_compile-m) && $(cmd_t_strip)
310 do_strip  = @$(disp_strip)     ; $(cmd_strip)
311 do_t_strip= @$(disp_t_strip)   ; $(cmd_t_strip)
312 do_unifdef= @$(disp_unifdef)   ; $(cmd_unifdef)
313 hcompile.u= @$(disp_hcompile.u); $(cmd_hcompile.u)
314 hcompile.o= @$(disp_hcompile.o); $(cmd_hcompile.o)
316 define do_ar
317         @$(disp_ar) ; $(cmd_ar)
318         @$(do_t_strip)
319 endef
320 define compile.u
321         @$(disp_compile.u) ; $(cmd_compile.u)
322         @$(disp_t_strip)
323 endef
324 cmd_hcompile.u = $(HOSTCC) $(filter-out $(PHONY),$^) $(DEPS-$(notdir $@)) -o $@ $(BUILD_LDFLAGS) $(BUILD_LDFLAGS-$(notdir $(^D))) $(BUILD_LDFLAGS-$(notdir $@)) $(BUILD_CFLAGS) $(BUILD_CFLAGS-$(notdir $(^D))) $(BUILD_CFLAGS-$(notdir $@))
325 cmd_hcompile.o = $(HOSTCC) $(filter-out $(PHONY),$<) $(DEPS-$(notdir $@)) -c -o $@ $(BUILD_CFLAGS) $(BUILD_CFLAGS-$(notdir $(^D))) $(BUILD_CFLAGS-$(notdir $@))
327 define link.so
328         $(Q)$(RM) $@ $@.$(2) $(dir $@)$(1)
329         @$(disp_ld)
330         $(Q)$(CC) $(LDFLAGS-$(notdir $@)) $(LDFLAGS-y-$(@F)) \
331                 -Wl,-soname=$(notdir $@).$(2) \
332                 $(CFLAG_-nostdlib) $(CFLAG_-nostartfiles) \
333                 -o $(dir $@)$(1) $(START_FILE-$(notdir $@)) \
334                 -Wl,--whole-archive $(firstword $^) -Wl,--no-whole-archive \
335                 $(LIBS-$(notdir $@)) $(LIBGCC) $(END_FILE-$(notdir $@))
336         $(Q)$(LN) -sf $(1) $@.$(2)
337         $(Q)$(LN) -sf $(1) $@
338 endef
340 # CRT files needed by link-flat.so
341 LINK_FLAT_CRTS := $(top_builddir)lib/Scrt1.o $(top_builddir)lib/crti.o \
342         $(top_builddir)lib/crtn.o
344 # Create a shared flat library from the archive named by the first dependency.
345 # $@ names the shared library's .gdb file, not the flat file itself.
346 # (This is because the .gdb suffix makes the ELF file more distinctive
347 # than the suffixless flat file.)
349 # Argument 1 is the shared library file -- i.e. $(@:.gdb=) -- and argument 2
350 # is the shared library identifier.  If it wasn't for $(disp_ld), we could
351 # avoid passing $(@:.gdb=) as an argument and use $(@:.gdb=) instead of $(1).
353 # This is so far only used for libc, for which we want to link the entire
354 # libgcc into the shared object.
355 define link-flat.so
356         $(Q)$(RM) $(1) $@
357         @$(disp_ld)
358         $(Q)$(CC) $(LDFLAGS-$(notdir $@)) $(CFLAG_-nostdlib) -o $(1) \
359                 -Wl,-elf2flt -Wl,-shared-lib-id,$(2) $(top_builddir)lib/Scrt1.o \
360                 $(top_builddir)/lib/crti.o -Wl,--whole-archive $(firstword $^) \
361                 $(LIBGCC) -Wl,--no-whole-archive $(LIBS-$(notdir $@)) $(LIBGCC) \
362                 $(top_builddir)/lib/crtn.o
363 endef
365 CFLAGS-.os+=$(PICFLAG)
366 CFLAGS-.oS+=$(PICFLAG) -DSHARED
368 $(top_builddir)%.o:  $(top_srcdir)%.c FORCE ; $(compile.c)
369 $(top_builddir)%.os: $(top_srcdir)%.c FORCE | pregen; $(compile.c)
370 $(top_builddir)%.oS: $(top_srcdir)%.c FORCE | pregen; $(compile.c)
371 $(top_builddir)%.o:  $(top_srcdir)%.S FORCE ; $(compile.S)
372 $(top_builddir)%.os: $(top_srcdir)%.S FORCE | pregen; $(compile.S)
373 $(top_builddir)%.oS: $(top_srcdir)%.S FORCE | pregen; $(compile.S)
374 $(top_builddir)%.o:  $(top_srcdir)%.s FORCE ; $(compile.S)
375 $(top_builddir)%.os: $(top_srcdir)%.s FORCE ; $(compile.S)
376 $(top_builddir)%.oS: $(top_srcdir)%.s FORCE | pregen; $(compile.S)
377 $(top_builddir)%.i:  $(top_srcdir)%.c FORCE | pregen; $(compile.i)
378 $(top_builddir)%.i:  $(top_srcdir)%.S FORCE | pregen; $(compile.i)
379 $(top_builddir)%.s:  $(top_srcdir)%.c FORCE | pregen; $(compile.s)
380 $(top_builddir)%.s:  $(top_srcdir)%.S FORCE | pregen; $(compile.s)
381 $(top_builddir)%.dep:
383 $(top_builddir)lib/interp.c: | $(top_builddir)lib
384         $(Q)echo "/* Force shared libraries to know about the correct library loader */" > $@.tmp
385         $(Q)echo "#include <features.h>" >> $@.tmp
386         $(Q)echo "const char __dl_ldso__[] attribute_hidden __attribute__ ((weak)) __attribute__ ((section " \
387                 "(\".interp\"))) =\""$(RUNTIME_PREFIX)$(MULTILIB_DIR)/$(UCLIBC_LDSO)"\";" >> $@.tmp
388         $(Q)$(SED) -i -e 's://:/:g' $@.tmp
389         $(Q)mv $@.tmp $@
391 $(interp): $(top_builddir)lib/interp.c | $(sub_headers)
392         $(compile.c)
393         $(Q)$(STRIPTOOL) -x -R .note -R .comment $@
395 $(ldso):
396         $(Q)cd $(top_builddir); $(MAKE) lib/$(patsubst %.$(ABI_VERSION),%,$(notdir $@))
397 $(libc):
398         $(Q)cd $(top_builddir); $(MAKE) lib/$(patsubst %.$(ABI_VERSION),%,$(notdir $@))
400 CRT := crt1
402 ifeq ($(HAVE_SHARED)$(UCLIBC_FORMAT_SHARED_FLAT),y)
403 CRTS=$(top_builddir)lib/$(CRT).o $(top_builddir)lib/S$(CRT).o
404 else
405 CRTS=$(top_builddir)lib/$(CRT).o
406 endif
408 ASFLAGS-$(CRT).o := -DL_$(CRT)
409 ASFLAGS-S$(CRT).o := $(PIEFLAG) -DL_S$(CRT)
410 $(CRTS): $(top_srcdir)libc/sysdeps/linux/$(TARGET_ARCH)/$(CRT).S
411         $(compile.S)
412         $(Q)$(STRIPTOOL) -x -R .note -R .comment $@
414 ifeq ($(UCLIBC_CTOR_DTOR),y)
415 CTOR_TARGETS=$(top_builddir)lib/crti.o $(top_builddir)lib/crtn.o
416 else
417 CTOR_TARGETS:=
418 endif
419 ifeq ($(HAS_NO_THREADS)$(UCLIBC_HAS_THREADS_NATIVE),)
420 $(lib-so-y): $(CTOR_TARGETS)
421 endif
423 ifeq ($(UCLIBC_FORMAT_FDPIC_ELF),y)
424 CRTRELOC=$(top_builddir)lib/crtreloc.o
425 $(CRTRELOC): $(top_builddir)lib/%.o : $(top_srcdir)libc/sysdeps/linux/$(TARGET_ARCH)/%.c
426         $(compile.c)
427 endif
429 ifneq ($(wildcard $(top_srcdir)libc/sysdeps/linux/$(TARGET_ARCH)/initfini.c),)
430 CFLAGS-initfini.s := -S -g0 $(PICFLAG) -fno-inline-functions -finhibit-size-directive
431 $(top_builddir)lib/initfini.s: $(top_srcdir)libc/sysdeps/linux/$(TARGET_ARCH)/initfini.c | $(top_builddir)lib
432         $(compile.c)
434 $(top_builddir)lib/defs.h: $(top_builddir)lib/initfini.s
435         $(do_sed) -n -e '/@TESTS_BEGIN/,/@TESTS_END/p' $< | \
436                 $(AWK) -f $(top_srcdir)extra/scripts/defs.awk > $@.tmp
437         $(Q)mv $@.tmp $@
439 $(top_builddir)lib/crti.S: $(top_builddir)lib/initfini.s $(top_builddir)lib/defs.h
440         $(do_sed) -n -e '1,/@HEADER_ENDS/p' \
441                 -e '/@_.*_PROLOG_BEGINS/,/@_.*_PROLOG_ENDS/p' \
442                 -e '/@TRAILER_BEGINS/,$$p' $< > $@
444 $(top_builddir)lib/crtn.S: $(top_builddir)lib/initfini.s
445         $(do_sed) -n -e '1,/@HEADER_ENDS/p' \
446                 -e '/@_.*_EPILOG_BEGINS/,/@_.*_EPILOG_ENDS/p' \
447                 -e '/@TRAILER_BEGINS/,$$p' $< > $@
449 $(CTOR_TARGETS): $(top_builddir)lib/%.o : $(top_builddir)lib/%.S
450         $(compile.S) $(PICFLAG) $(SSP_DISABLE_FLAGS)
451 else
452 $(CTOR_TARGETS): $(top_builddir)lib/%.o : $(top_srcdir)libc/sysdeps/linux/$(TARGET_ARCH)/%.S
453         $(compile.S) $(PICFLAG) $(SSP_DISABLE_FLAGS)
454 endif
456 CRTS_COMPAT :=
458 startfiles = $(CRTS) $(CTOR_TARGETS) $(CRTS_COMPAT) $(CRTRELOC)
459 startfiles: $(startfiles)
460 $(CRTS) $(CTOR_TARGETS) $(CRTS_COMPAT) $(CRTRELOC): | headers
461 $(CRTS) $(CTOR_TARGETS) $(CRTS_COMPAT) $(CRTRELOC) \
462         $(LINK_FLAT_CRTS) $(SHARED_START_FILES) $(SHARED_END_FILES): | $(top_builddir)lib
464 $(top_builddir)lib/$(NONSHARED_LIBNAME): $(libc-nonshared-y)
465         $(Q)$(RM) $@
466         $(do_ar)
468 $(top_builddir)lib/libpthread_nonshared.a: $(libpthread-nonshared-y)
469         $(Q)$(RM) $@
470         $(do_ar)
472 files.dep := $(libc-a-y) $(libc-so-y) $(libc-nonshared-y) \
473         $(libm-a-y) $(libm-so-y) \
474         $(libpthread-a-y) $(libpthread-so-y) $(libpthread-nonshared-y) \
475         $(libthread_db-a-y) $(libthread_db-so-y) $(libpthread-generated-y) \
476         $(START_FILE-libpthread.so) $(END_FILE-libpthread.so) \
477         $(PTHREAD_INITFINI:.c=.s) \
478         $(librt-a-y) $(librt-so-y) \
479         $(libcrypt-a-y) $(libcrypt-so-y) \
480         $(libutil-a-y) $(libutil-so-y) \
481         $(ldso-y) $(libdl-a-y) $(libdl-so-y) \
482         $(libubacktrace-a-y) $(libubacktrace-so-y) \
483         $(libuargp-so-y) $(libuargp-a-y) \
484         $(libiconv-so-y) $(libiconv-a-y) \
485         $(libintl-so-y) $(libintl-a-y)
486 .depends.dep := \
487         $(patsubst %.s,%.s.dep,$(filter %.s,$(files.dep))) \
488         $(patsubst %.o,%.o.dep,$(filter %.o,$(files.dep))) \
489         $(patsubst %.os,%.os.dep,$(filter %.os,$(files.dep))) \
490         $(patsubst %.oS,%.oS.dep,$(filter %.oS,$(files.dep)))
491 # Oh, and prepend a dot to the basename so i don't have to change my habit of
492 # calling 'size thefile.o*'
493 .depends.dep := $(foreach f,$(.depends.dep),$(dir $(f)).$(notdir $(f)))
494 .depends.dep := $(wildcard $(.depends.dep))
496 FORCE:
498 clean: objclean-y headers_clean-y
499 realclean: clean menuconfig-clean-y
500         $(Q)$(RM) $(.depends.dep)
502 objclean-y: $(objclean-y)
503 headers_clean-y: $(headers_clean-y)
505 ifeq ($(filter $(noconfig_targets),$(MAKECMDGOALS)),)
506 ifneq ($(strip $(.depends.dep)),)
507 .NOEXPORT:
508 -include $(.depends.dep)
509 endif
510 endif
512 # vi: ft=make :