Makerules 15 KB

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