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