OSDN Git Service

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