Makerules 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447
  1. #
  2. # Licensed under LGPL v2.1, see the file COPYING.LIB in this tarball for details.
  3. #
  4. .SUFFIXES: .c .S .o .os .oS .so .a .s .i
  5. PHONY := FORCE
  6. .PHONY: dummy $(PHONY) subdirs \
  7. all check test $(clean_targets) \
  8. config dist menuconfig oldconfig release \
  9. utils help
  10. # order is important, the stripping uses STRIP_FLAGS for lib-so, but not for lib-a
  11. ifeq ($(HAVE_SHARED),y)
  12. .LIBPATTERNS: "lib%.so"
  13. libs: $(lib-so-y) $(lib-a-y)
  14. $(lib-so-y): | $(interp)
  15. else
  16. .LIBPATTERNS: "lib%.a"
  17. ifeq ($(UCLIBC_FORMAT_SHARED_FLAT),y)
  18. libs: $(lib-gdb-y)
  19. endif
  20. libs: $(lib-a-y)
  21. $(lib-a-y): | $(top_builddir)lib
  22. endif
  23. objs: all_objs
  24. shared_objs = $(libc-y:.o=.os) $(libc-shared-y) $(libc-nonshared-y) \
  25. $(libcrypt-so-y) $(libdl-so-y) \
  26. $(libintl-so-y) $(libm-so-y) $(libnsl-so-y) \
  27. $(libpthread-so-y) $(libpthread-nonshared-y) $(libthread_db-so-y) \
  28. $(libresolv-so-y) $(librt-so-y) \
  29. $(ldso-y) \
  30. $(libutil-so-y)
  31. ar_objs = $(libc-y) $(libc-static-y) $(libcrypt-a-y) \
  32. $(libdl-a-y) $(libintl-a-y) $(libm-a-y) $(libnsl-a-y) \
  33. $(libpthread-a-y) $(libthread_db-a-y) \
  34. $(libresolv-a-y) $(librt-a-y) $(libutil-a-y)
  35. ifeq ($(DOPIC),y)
  36. ar_objs := $(ar_objs:.o=.os)
  37. endif
  38. flat_objs = $(lib-gdb-y)
  39. ifeq ($(HAVE_SHARED),y)
  40. all_objs: $(sort $(shared_objs) $(ar_objs))
  41. else
  42. all_objs: $(ar_objs)
  43. endif
  44. $(shared_objs) $(ar_objs): | $(sub_headers)
  45. headers-y: $(headers-y)
  46. @true
  47. MAKEFLAGS += --no-print-directory
  48. SHELL_SET_X := set +x
  49. define rel_srcdir
  50. $(shell $(CONFIG_SHELL) $(top_srcdir)/extra/scripts/relative_path.sh $(@D) .)
  51. endef
  52. ifneq ($(findstring -s,$(MAKEFLAGS)),)
  53. export MAKE_IS_SILENT := y
  54. SECHO := -@false
  55. DISP := sil
  56. Q := @
  57. else
  58. export MAKE_IS_SILENT := n
  59. SECHO := @echo
  60. ifneq ($(V)$(VERBOSE),)
  61. SHELL_SET_X := set -x
  62. DISP := ver
  63. Q :=
  64. else
  65. DISP := pur
  66. Q := @
  67. endif
  68. endif
  69. show_objs = $(subst $(top_builddir),,$(subst ../,,$@))
  70. pur_disp_compile.c = echo " "CC $(show_objs)
  71. pur_disp_compile.i = echo " "CPP $(show_objs)
  72. pur_disp_compile.s = echo " "CC-S $(show_objs)
  73. pur_disp_compile.u = echo " "CC $(show_objs)
  74. pur_disp_compile.S = echo " "AS $(show_objs)
  75. pur_disp_compile.m = $(pur_disp_compile.c)
  76. pur_disp_compile.mi= echo " "CPP-m $(show_objs)
  77. pur_disp_compile-m = echo " "CC-m $(show_objs)
  78. pur_disp_hcompile.u= echo " "HOSTCC $(show_objs)
  79. pur_disp_hcompile.o= echo " "HOSTCC-o $(show_objs)
  80. pur_disp_strip = echo " "STRIP $(STRIP_FLAGS) $@
  81. pur_disp_t_strip = echo " "STRIP $(STRIP_FLAGS) $@
  82. pur_disp_ar = echo " "AR $(ARFLAGS) $@
  83. pur_disp_ld = echo " "LD $(1)
  84. pur_disp_ln = echo " "LN $(show_objs)
  85. pur_disp_mkdir = echo " "MKDIR $(show_objs)
  86. pur_disp_gen = echo " "GEN $(show_objs)
  87. pur_disp_unifdef = echo " "UNIFDEF $(show_objs)
  88. pur_disp_rm = echo " "CLEAN $(subst CLEAN_,,$(patsubst HEADERCLEAN_%,include \(%\),$@))
  89. sil_disp_compile.c = true
  90. sil_disp_compile.i = true
  91. sil_disp_compile.s = true
  92. sil_disp_compile.u = true
  93. sil_disp_compile.S = true
  94. sil_disp_compile.m = true
  95. sil_disp_compile.mi= true
  96. sil_disp_compile-m = true
  97. sil_disp_hcompile.u= true
  98. sil_disp_hcompile.o= true
  99. sil_disp_strip = true
  100. sil_disp_t_strip = true
  101. sil_disp_ar = true
  102. sil_disp_ld = true
  103. sil_disp_ln = true
  104. sil_disp_mkdir = true
  105. sil_disp_gen = true
  106. sil_disp_unifdef = true
  107. sil_disp_rm = true
  108. ver_disp_compile.c = echo $(cmd_compile.c)
  109. ver_disp_compile.i = echo $(cmd_compile.i)
  110. ver_disp_compile.s = echo $(cmd_compile.s)
  111. ver_disp_compile.u = echo $(cmd_compile.u)
  112. ver_disp_compile.S = echo $(cmd_compile.S)
  113. ver_disp_compile.m = echo $(cmd_compile.m)
  114. ver_disp_compile.mi= echo $(cmd_compile.mi)
  115. ver_disp_compile-m = echo $(cmd_compile-m)
  116. ver_disp_hcompile.u= echo $(cmd_hcompile.u)
  117. ver_disp_hcompile.o= echo $(cmd_hcompile.o)
  118. ver_disp_strip = echo $(cmd_strip)
  119. ver_disp_t_strip = echo $(cmd_t_strip)
  120. ver_disp_ar = echo $(cmd_ar)
  121. ver_disp_ld =
  122. ver_disp_ln =
  123. ver_disp_mkdir =
  124. ver_disp_gen =
  125. ver_disp_unifdef = echo $(cmd_unifdef)
  126. ver_disp_rm =
  127. disp_compile.c = $($(DISP)_disp_compile.c)
  128. disp_compile.i = $($(DISP)_disp_compile.i)
  129. disp_compile.s = $($(DISP)_disp_compile.s)
  130. disp_compile.u = $($(DISP)_disp_compile.u)
  131. disp_compile.S = $($(DISP)_disp_compile.S)
  132. disp_compile.m = $($(DISP)_disp_compile.m)
  133. disp_compile.mi= $($(DISP)_disp_compile.mi)
  134. disp_compile-m = $($(DISP)_disp_compile-m)
  135. disp_hcompile.u= $($(DISP)_disp_hcompile.u)
  136. disp_hcompile.o= $($(DISP)_disp_hcompile.o)
  137. disp_strip = $($(DISP)_disp_strip)
  138. disp_t_strip = $($(DISP)_disp_t_strip)
  139. disp_ar = $($(DISP)_disp_ar)
  140. disp_ld = $($(DISP)_disp_ld)
  141. disp_ln = $($(DISP)_disp_ln)
  142. disp_mkdir = $($(DISP)_disp_mkdir)
  143. disp_gen = $($(DISP)_disp_gen)
  144. disp_unifdef = $($(DISP)_disp_unifdef)
  145. disp_rm = $($(DISP)_disp_rm)
  146. any-prereq = $(filter-out $(PHONY),$?) $(filter-out $(PHONY) $(wildcard $^),$^)
  147. # ../foo/bar/baz.ext -> foo_bar_baz.ext
  148. variablify = $(subst /,_,$(subst $(top_builddir),,$(1)))
  149. # strip the top_builddir off everything to make the *string* idempotent for -C
  150. dirify = $(subst $(top_builddir),,$(patsubst -L$(top_builddir)%,-L%,$(patsubst -I$(top_builddir)%,-I%,$(1))))
  151. # True if not identical. Neither order nor whitespace nor identical flags
  152. # matter.
  153. compare_flags = \
  154. $(strip $(filter-out $(call dirify,$(cmd_$(call variablify,$(1)))), \
  155. $(call dirify,$(cmd_$(call variablify,$(@))))) \
  156. $(filter-out $(call dirify,$(cmd_$(call variablify,$(@)))), \
  157. $(call dirify,$(cmd_$(call variablify,$(1))))))
  158. # Rebuild if any prerequisite, the used CC or flags changed.
  159. # Previously used flags are stored in the corresponding .%.dep files
  160. maybe_exec = \
  161. $(if $(strip $(compare_flags) $(any-prereq)), \
  162. @set -e; \
  163. $(disp_$(1)); \
  164. $(cmd_$(1)); \
  165. echo 'cmd_$(call variablify,$@) := $(call dirify,$(cmd_$(call variablify,$1)))' >> $(dir $@).$(notdir $@).dep)
  166. # collect flags of domulti prereqs
  167. #collect_multi_flags = $(CFLAGS-$(notdir $(d))) $(CFLAGS-$(notdir $(patsubst %/,%,$(dir $(d)))))
  168. collect_multi_flags = $(CFLAGS-$(notdir $(patsubst %/,%,$(dir $(d)))))
  169. CFLAGS_gen.dep = -MT $@ -MD -MP -MF $(dir $@).$(notdir $@).dep
  170. cmd_compile.c = $(CC) -c $< -o $@ $(CFLAGS) \
  171. $(CFLAGS-$(suffix $@)) \
  172. $(filter-out $(CFLAGS-OMIT-$(notdir $<)),$(CFLAGS-$(notdir $(<D)))) \
  173. $(CFLAGS-$(subst $(top_srcdir),,$(dir $<))) \
  174. $(CFLAGS-$(notdir $<)) \
  175. $(CFLAGS-$(notdir $@)) \
  176. $(CFLAGS_gen.dep)
  177. cmd_compile.i = $(cmd_compile.c:-c=-E -dD $(EXTRA_CPPFLAGS))
  178. cmd_compile.s = $(cmd_compile.c:-c=-S)
  179. cmd_compile.u = $(CC) $^ $(DEPS-$(notdir $@)) -o $@ $(CFLAGS) $(CFLAGS-$(notdir $(^D))) $(CFLAGS-$(notdir $@)) $(CFLAGS_gen.dep)
  180. cmd_compile.S = $(filter-out -std=gnu99, $(cmd_compile.c)) -D__ASSEMBLER__ $(ASFLAGS) $(ARCH_ASFLAGS) $(ASFLAGS-$(suffix $@)) $(ASFLAGS-$(notdir $<)) $(ASFLAGS-$(notdir $@))
  181. cmd_compile.m = $(cmd_compile.c) -DL_$(patsubst %$(suffix $(notdir $@)),%,$(notdir $@))
  182. cmd_compile.mi= $(cmd_compile.m:-c=-E -dD $(EXTRA_CPPFLAGS))
  183. cmd_compile-m = $(CC) $^ -c -o $@ $(CFLAGS) $(CFLAGS-$(suffix $@)) $(CFLAGS-$(notdir $(@D))) $(CFLAGS-$(notdir $@)) $(sort $(foreach d,$(^:$(top_srcdir)=),$(collect_multi_flags)))
  184. cmd_strip = $(STRIPTOOL) $(STRIP_FLAGS) $^
  185. cmd_t_strip = $(STRIPTOOL) $(STRIP_FLAGS) $@
  186. cmd_ar = $(AR) $(ARFLAGS) $@ $^
  187. define do_ln
  188. @$(disp_ln)
  189. $(Q)$(LN) -fs
  190. endef
  191. define do_mkdir
  192. @$(disp_mkdir)
  193. $(Q)$(INSTALL) -d $@
  194. endef
  195. define do_rm
  196. @$(disp_rm)
  197. $(Q)$(RM)
  198. endef
  199. define do_awk
  200. @$(disp_gen)
  201. $(Q)$(AWK) -f
  202. endef
  203. define do_sed
  204. @$(disp_gen)
  205. $(Q)$(SED)
  206. endef
  207. compile.c = @$(call maybe_exec,compile.c)
  208. compile.i = $(call maybe_exec,compile.i)
  209. compile.s = $(call maybe_exec,compile.s)
  210. compile.S = @$(call maybe_exec,compile.S)
  211. compile.m = @$(call maybe_exec,compile.m)
  212. compile.mi= $(call maybe_exec,compile.mi)
  213. compile-m = @$(disp_compile-m) ; $(cmd_compile-m) && $(cmd_t_strip)
  214. do_strip = @$(disp_strip) ; $(cmd_strip)
  215. do_t_strip= @$(disp_t_strip) ; $(cmd_t_strip)
  216. do_unifdef= @$(disp_unifdef) ; $(cmd_unifdef)
  217. hcompile.u= @$(disp_hcompile.u); $(cmd_hcompile.u)
  218. hcompile.o= @$(disp_hcompile.o); $(cmd_hcompile.o)
  219. define do_ar
  220. @$(disp_ar) ; $(cmd_ar)
  221. @$(do_t_strip)
  222. endef
  223. define compile.u
  224. @$(disp_compile.u) ; $(cmd_compile.u)
  225. @$(disp_t_strip)
  226. endef
  227. 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 $@))
  228. cmd_hcompile.o = $(HOSTCC) $(filter-out $(PHONY),$<) $(DEPS-$(notdir $@)) -c -o $@ $(BUILD_CFLAGS) $(BUILD_CFLAGS-$(notdir $(^D))) $(BUILD_CFLAGS-$(notdir $@))
  229. define link.so
  230. $(Q)$(RM) $@ $@.$(2) $(dir $@)$(1)
  231. @$(disp_ld)
  232. $(Q)$(CC) $(LDFLAGS-$(notdir $@)) -Wl,-soname=$(notdir $@).$(2) \
  233. $(NOSTDLIB_CFLAGS) -o $(dir $@)$(1) $(START_FILE-$(notdir $@)) \
  234. -Wl,--whole-archive $(firstword $^) -Wl,--no-whole-archive \
  235. $(LIBS-$(notdir $@)) $(LIBGCC) $(END_FILE-$(notdir $@))
  236. $(Q)$(LN) -sf $(1) $@.$(2)
  237. $(Q)$(LN) -sf $(1) $@
  238. endef
  239. # CRT files needed by link-flat.so
  240. LINK_FLAT_CRTS := $(top_builddir)lib/Scrt1.o $(top_builddir)lib/crti.o \
  241. $(top_builddir)lib/crtn.o
  242. # Create a shared flat library from the archive named by the first dependency.
  243. # $@ names the shared library's .gdb file, not the flat file itself.
  244. # (This is because the .gdb suffix makes the ELF file more distinctive
  245. # than the suffixless flat file.)
  246. #
  247. # Argument 1 is the shared library file -- i.e. $(@:.gdb=) -- and argument 2
  248. # is the shared library identifier. If it wasn't for $(disp_ld), we could
  249. # avoid passing $(@:.gdb=) as an argument and use $(@:.gdb=) instead of $(1).
  250. #
  251. # This is so far only used for libc, for which we want to link the entire
  252. # libgcc into the shared object.
  253. define link-flat.so
  254. $(Q)$(RM) $(1) $@
  255. @$(disp_ld)
  256. $(Q)$(CC) $(LDFLAGS-$(notdir $@)) $(NOSTDLIB_CFLAGS) -o $(1) \
  257. -Wl,-elf2flt -Wl,-shared-lib-id,$(2) $(top_builddir)lib/Scrt1.o \
  258. $(top_builddir)/lib/crti.o -Wl,--whole-archive $(firstword $^) \
  259. $(LIBGCC) -Wl,--no-whole-archive $(LIBS-$(notdir $@)) $(LIBGCC) \
  260. $(top_builddir)/lib/crtn.o
  261. endef
  262. define linkm.so
  263. $(Q)$(RM) $@ $@.$(2) $(dir $@)$(1)
  264. $(do_strip)
  265. @$(disp_ld)
  266. $(Q)$(CC) $(LDFLAGS-$(notdir $@)) -Wl,-soname=$(notdir $@).$(2) \
  267. $(NOSTDLIB_CFLAGS) -o $(dir $@)$(1) $(START_FILE-$(notdir $@)) \
  268. $^ \
  269. $(LIBS-$(notdir $@)) $(LIBGCC) $(END_FILE-$(notdir $@))
  270. $(Q)$(LN) -sf $(1) $@.$(2)
  271. $(Q)$(LN) -sf $(1) $@
  272. endef
  273. CFLAGS-.os+=$(PICFLAG)
  274. CFLAGS-.oS+=$(PICFLAG) -DSHARED
  275. $(top_builddir)%.o: $(top_srcdir)%.c FORCE ; $(compile.c)
  276. $(top_builddir)%.os: $(top_srcdir)%.c FORCE | pregen; $(compile.c)
  277. $(top_builddir)%.oS: $(top_srcdir)%.c FORCE | pregen; $(compile.c)
  278. $(top_builddir)%.o: $(top_srcdir)%.S FORCE ; $(compile.S)
  279. $(top_builddir)%.os: $(top_srcdir)%.S FORCE | pregen; $(compile.S)
  280. $(top_builddir)%.oS: $(top_srcdir)%.S FORCE | pregen; $(compile.S)
  281. $(top_builddir)%.o: $(top_srcdir)%.s FORCE ; $(compile.S)
  282. $(top_builddir)%.os: $(top_srcdir)%.s FORCE ; $(compile.S)
  283. $(top_builddir)%.oS: $(top_srcdir)%.s FORCE | pregen; $(compile.S)
  284. $(top_builddir)%.i: $(top_srcdir)%.c FORCE | pregen; $(compile.i)
  285. $(top_builddir)%.i: $(top_srcdir)%.S FORCE | pregen; $(compile.i)
  286. $(top_builddir)%.s: $(top_srcdir)%.c FORCE | pregen; $(compile.s)
  287. $(top_builddir)%.s: $(top_srcdir)%.S FORCE | pregen; $(compile.s)
  288. $(top_builddir)%.dep:
  289. $(top_builddir)lib/interp.c: | $(sub_headers) $(top_builddir)lib
  290. $(Q)echo "/* Force shared libraries to know about the correct library loader */" > $@.tmp
  291. $(Q)echo "#include <features.h>" >> $@.tmp
  292. $(Q)echo "const char __dl_ldso__[] attribute_hidden __attribute__ ((weak)) __attribute__ ((section " \
  293. "(\".interp\"))) =\""$(RUNTIME_PREFIX)$(MULTILIB_DIR)/$(UCLIBC_LDSO)"\";" >> $@.tmp
  294. $(Q)mv $@.tmp $@
  295. $(interp): $(top_builddir)lib/interp.c
  296. $(compile.c)
  297. $(Q)$(STRIPTOOL) -x -R .note -R .comment $@
  298. $(ldso):
  299. @cd $(top_builddir); $(MAKE) lib/$(patsubst %.$(ABI_VERSION),%,$(notdir $@))
  300. $(libc):
  301. @cd $(top_builddir); $(MAKE) lib/$(patsubst %.$(ABI_VERSION),%,$(notdir $@))
  302. CRT := crt1
  303. ifeq ($(HAVE_SHARED)$(UCLIBC_FORMAT_SHARED_FLAT),y)
  304. CRTS=$(top_builddir)lib/$(CRT).o $(top_builddir)lib/S$(CRT).o
  305. else
  306. CRTS=$(top_builddir)lib/$(CRT).o
  307. endif
  308. ASFLAGS-$(CRT).o := -DL_$(CRT)
  309. ASFLAGS-S$(CRT).o := $(PIEFLAG) -DL_S$(CRT)
  310. $(CRTS): $(top_srcdir)libc/sysdeps/linux/$(TARGET_ARCH)/$(CRT).S
  311. $(compile.S)
  312. $(Q)$(STRIPTOOL) -x -R .note -R .comment $@
  313. ifeq ($(UCLIBC_CTOR_DTOR),y)
  314. CTOR_TARGETS=$(top_builddir)lib/crti.o $(top_builddir)lib/crtn.o
  315. else
  316. CTOR_TARGETS:=
  317. endif
  318. ifeq ($(UCLIBC_FORMAT_FDPIC_ELF),y)
  319. CRTRELOC=$(top_builddir)lib/crtreloc.o
  320. $(CRTRELOC): $(top_builddir)lib/%.o : $(top_srcdir)libc/sysdeps/linux/$(TARGET_ARCH)/%.c
  321. $(compile.c)
  322. endif
  323. ifneq ($(wildcard $(top_srcdir)libc/sysdeps/linux/$(TARGET_ARCH)/initfini.c),)
  324. CFLAGS-initfini.s := -S -g0 $(PICFLAG) -fno-inline-functions -finhibit-size-directive
  325. $(top_builddir)lib/initfini.s: $(top_srcdir)libc/sysdeps/linux/$(TARGET_ARCH)/initfini.c | $(top_builddir)lib
  326. $(compile.c)
  327. $(top_builddir)lib/defs.h: $(top_builddir)lib/initfini.s | $(top_builddir)lib
  328. $(Q)sed -n -e '/@TESTS_BEGIN/,/@TESTS_END/p' $< | \
  329. gawk -f $(top_srcdir)extra/scripts/defs.awk > $@.tmp
  330. $(Q)mv $@.tmp $@
  331. $(top_builddir)lib/crti.S: $(top_builddir)lib/initfini.s $(top_builddir)lib/defs.h
  332. $(Q)sed -n -e '1,/@HEADER_ENDS/p' \
  333. -e '/@_.*_PROLOG_BEGINS/,/@_.*_PROLOG_ENDS/p' \
  334. -e '/@TRAILER_BEGINS/,$$p' $< > $@
  335. $(top_builddir)lib/crtn.S: $(top_builddir)lib/initfini.s
  336. $(Q)sed -n -e '1,/@HEADER_ENDS/p' \
  337. -e '/@_.*_EPILOG_BEGINS/,/@_.*_EPILOG_ENDS/p' \
  338. -e '/@TRAILER_BEGINS/,$$p' $< > $@
  339. $(CTOR_TARGETS): $(top_builddir)lib/%.o : $(top_builddir)lib/%.S
  340. $(compile.S) $(PICFLAG) $(SSP_DISABLE_FLAGS)
  341. else
  342. $(CTOR_TARGETS): $(top_builddir)lib/%.o : $(top_srcdir)libc/sysdeps/linux/$(TARGET_ARCH)/%.S
  343. $(compile.S) $(PICFLAG) $(SSP_DISABLE_FLAGS)
  344. endif
  345. #ifeq ($(TARGET_ARCH),nios)
  346. #CRTS_COMPAT := $(top_builddir)lib/crt0.o
  347. #$(CRTS_COMPAT):
  348. # ln -fs crt1.o $(top_builddir)lib/crt0.o
  349. #else
  350. CRTS_COMPAT :=
  351. #endif
  352. $(crt-y): $(CRTS) $(CTOR_TARGETS) $(CRTS_COMPAT) $(CRTRELOC)
  353. $(CRTS) $(CTOR_TARGETS) $(CRTS_COMPAT) $(CRTRELOC): | headers
  354. $(CRTS) $(CTOR_TARGETS) $(CRTS_COMPAT) $(CRTRELOC) $(LINK_FLAT_CRTS) $(SHARED_START_FILES) $(SHARED_END_FILES) : | $(top_builddir)lib
  355. $(top_builddir)lib/$(NONSHARED_LIBNAME): $(libc-nonshared-y)
  356. $(Q)$(RM) $@
  357. $(do_ar)
  358. $(top_builddir)lib/libpthread_nonshared.a: $(libpthread-nonshared-y)
  359. $(Q)$(RM) $@
  360. $(do_ar)
  361. files.dep := $(libc-a-y) $(libc-so-y) $(libc-nonshared-y) \
  362. $(libm-a-y) $(libm-so-y) \
  363. $(libpthread-a-y) $(libpthread-so-y) $(libpthread-nonshared-y) \
  364. $(libthread_db-a-y) $(libthread_db-so-y) \
  365. $(librt-a-y) $(librt-so-y) $(libresolv-a-y) $(libresolv-so-y) \
  366. $(libcrypt-a-y) $(libcrypt-so-y) $(libutil-a-y) $(libutil-so-y) \
  367. $(libnsl-a-y) $(libnsl-so-y) $(ldso-y) $(libdl-a-y) $(libdl-so-y)
  368. .depends.dep := \
  369. $(patsubst %.o,%.o.dep,$(filter %.o,$(files.dep))) \
  370. $(patsubst %.os,%.os.dep,$(filter %.os,$(files.dep))) \
  371. $(patsubst %.oS,%.oS.dep,$(filter %.oS,$(files.dep)))
  372. # Oh, and prepend a dot to the basename so i don't have to change my habit of
  373. # calling 'size thefile.o*'
  374. .depends.dep := $(foreach f,$(.depends.dep),$(dir $(f)).$(notdir $(f)))
  375. .depends.dep := $(wildcard $(.depends.dep))
  376. FORCE:
  377. clean: objclean-y headers_clean-y
  378. realclean: clean menuconfig-clean-y
  379. $(Q)$(RM) $(.depends.dep)
  380. objclean-y: $(objclean-y)
  381. headers_clean-y: $(headers_clean-y)
  382. ifeq ($(filter $(noconfig_targets),$(MAKECMDGOALS)),)
  383. ifneq ($(strip $(.depends.dep)),)
  384. .NOEXPORT:
  385. -include $(.depends.dep)
  386. endif
  387. endif
  388. # vi: ft=make :