Makerules 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455
  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 $(subst CLEAN_,,$(patsubst HEADERCLEAN_%,include \(%\),$@))
  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. # collect flags of domulti prereqs
  166. #collect_multi_flags = $(CFLAGS-$(notdir $(d))) $(CFLAGS-$(notdir $(patsubst %/,%,$(dir $(d)))))
  167. collect_multi_flags = $(CFLAGS-$(notdir $(patsubst %/,%,$(dir $(d)))))
  168. CFLAGS_gen.dep = -MT $@ -MD -MP -MF $(dir $@).$(notdir $@).dep
  169. cmd_compile.c = $(CC) -c $< -o $@ $(CFLAGS) \
  170. $(CFLAGS-$(suffix $@)) \
  171. $(filter-out $(CFLAGS-OMIT-$(notdir $<)),$(CFLAGS-$(notdir $(<D)))) \
  172. $(CFLAGS-$(subst $(top_srcdir),,$(dir $<))) \
  173. $(CFLAGS-$(notdir $<)) \
  174. $(CFLAGS-$(notdir $@)) \
  175. $(CFLAGS_gen.dep)
  176. cmd_compile.i = $(cmd_compile.c:-c=-E -dD $(EXTRA_CPPFLAGS))
  177. cmd_compile.s = $(cmd_compile.c:-c=-S)
  178. cmd_compile.u = $(CC) $^ $(DEPS-$(notdir $@)) -o $@ $(CFLAGS) $(CFLAGS-$(notdir $(^D))) $(CFLAGS-$(notdir $@)) $(CFLAGS_gen.dep)
  179. cmd_compile.S = $(filter-out -std=gnu99, $(cmd_compile.c)) -D__ASSEMBLER__ $(ASFLAGS) $(ARCH_ASFLAGS) $(ASFLAGS-$(suffix $@)) $(ASFLAGS-$(notdir $<)) $(ASFLAGS-$(notdir $@))
  180. cmd_compile.m = $(cmd_compile.c) -DL_$(patsubst %$(suffix $(notdir $@)),%,$(notdir $@))
  181. cmd_compile.mi= $(cmd_compile.m:-c=-E -dD $(EXTRA_CPPFLAGS))
  182. cmd_compile-m = $(CC) $^ -c -o $@ $(CFLAGS) $(CFLAGS-$(suffix $@)) $(CFLAGS-$(notdir $(@D))) $(CFLAGS-$(notdir $@)) $(sort $(foreach d,$(^:$(top_srcdir)=),$(collect_multi_flags)))
  183. cmd_strip = $(STRIPTOOL) $(STRIP_FLAGS) $^
  184. cmd_t_strip = $(STRIPTOOL) $(STRIP_FLAGS) $@
  185. cmd_ar = $(AR) $(ARFLAGS) $@ $^
  186. define do_ln
  187. @$(disp_ln)
  188. $(Q)$(LN) -fs
  189. endef
  190. define do_mkdir
  191. @$(disp_mkdir)
  192. $(Q)$(INSTALL) -d $@
  193. endef
  194. define do_rm
  195. @$(disp_rm)
  196. $(Q)$(RM)
  197. endef
  198. define do_awk
  199. @$(disp_gen)
  200. $(Q)$(AWK) -f
  201. endef
  202. define do_sed
  203. @$(disp_gen)
  204. $(Q)$(SED)
  205. endef
  206. compile.c = @$(call maybe_exec,compile.c)
  207. compile.i = $(call maybe_exec,compile.i)
  208. compile.s = $(call maybe_exec,compile.s)
  209. compile.S = @$(call maybe_exec,compile.S)
  210. compile.m = @$(call maybe_exec,compile.m)
  211. compile.mi= $(call maybe_exec,compile.mi)
  212. compile-m = @$(disp_compile-m) ; $(cmd_compile-m) && $(cmd_t_strip)
  213. do_strip = @$(disp_strip) ; $(cmd_strip)
  214. do_t_strip= @$(disp_t_strip) ; $(cmd_t_strip)
  215. do_unifdef= @$(disp_unifdef) ; $(cmd_unifdef)
  216. hcompile.u= @$(disp_hcompile.u); $(cmd_hcompile.u)
  217. hcompile.o= @$(disp_hcompile.o); $(cmd_hcompile.o)
  218. define do_ar
  219. @$(disp_ar) ; $(cmd_ar)
  220. @$(do_t_strip)
  221. endef
  222. define compile.u
  223. @$(disp_compile.u) ; $(cmd_compile.u)
  224. @$(disp_t_strip)
  225. endef
  226. 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 $@))
  227. cmd_hcompile.o = $(HOSTCC) $(filter-out $(PHONY),$<) $(DEPS-$(notdir $@)) -c -o $@ $(BUILD_CFLAGS) $(BUILD_CFLAGS-$(notdir $(^D))) $(BUILD_CFLAGS-$(notdir $@))
  228. define link.so
  229. $(Q)$(INSTALL) -d $(dir $@)
  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)$(INSTALL) -d $(dir $@)
  255. $(Q)$(RM) $(1) $@
  256. @$(disp_ld)
  257. $(Q)$(CC) $(LDFLAGS-$(notdir $@)) $(NOSTDLIB_CFLAGS) -o $(1) \
  258. -Wl,-elf2flt -Wl,-shared-lib-id,$(2) $(top_builddir)lib/Scrt1.o \
  259. $(top_builddir)/lib/crti.o -Wl,--whole-archive $(firstword $^) \
  260. $(LIBGCC) -Wl,--no-whole-archive $(LIBS-$(notdir $@)) $(LIBGCC) \
  261. $(top_builddir)/lib/crtn.o
  262. endef
  263. define linkm.so
  264. $(Q)$(INSTALL) -d $(dir $@)
  265. $(Q)$(RM) $@ $@.$(2) $(dir $@)$(1)
  266. $(do_strip)
  267. @$(disp_ld)
  268. $(Q)$(CC) $(LDFLAGS-$(notdir $@)) -Wl,-soname=$(notdir $@).$(2) \
  269. $(NOSTDLIB_CFLAGS) -o $(dir $@)$(1) $(START_FILE-$(notdir $@)) \
  270. $^ \
  271. $(LIBS-$(notdir $@)) $(LIBGCC) $(END_FILE-$(notdir $@))
  272. $(Q)$(LN) -sf $(1) $@.$(2)
  273. $(Q)$(LN) -sf $(1) $@
  274. endef
  275. CFLAGS-.os+=$(PICFLAG)
  276. CFLAGS-.oS+=$(PICFLAG) -DSHARED
  277. $(top_srcdir)%.i: | pregen
  278. $(top_builddir)%.o: $(top_srcdir)%.c FORCE ; $(compile.c)
  279. $(top_builddir)%.os: $(top_srcdir)%.c FORCE ; $(compile.c)
  280. $(top_builddir)%.oS: $(top_srcdir)%.c FORCE ; $(compile.c)
  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 ; $(compile.S)
  284. $(top_builddir)%.o: $(top_srcdir)%.s FORCE ; $(compile.S)
  285. $(top_builddir)%.os: $(top_srcdir)%.s FORCE ; $(compile.S)
  286. $(top_builddir)%.oS: $(top_srcdir)%.s FORCE ; $(compile.S)
  287. $(top_builddir)%.i: $(top_srcdir)%.c FORCE ; $(compile.i)
  288. $(top_builddir)%.i: $(top_srcdir)%.S FORCE ; $(compile.i)
  289. $(top_builddir)%.s: $(top_srcdir)%.c FORCE ; $(compile.s)
  290. $(top_builddir)%.s: $(top_srcdir)%.S FORCE ; $(compile.s)
  291. $(top_builddir)%.dep:
  292. $(top_builddir)lib/interp.c: | $(sub_headers)
  293. $(Q)$(INSTALL) -d $(dir $@)
  294. $(Q)echo "/* Force shared libraries to know about the correct library loader */" > $@
  295. $(Q)echo "#include <features.h>" >> $@
  296. $(Q)echo "const char __dl_ldso__[] attribute_hidden __attribute__ ((weak)) __attribute__ ((section " \
  297. "(\".interp\"))) =\""$(RUNTIME_PREFIX)$(MULTILIB_DIR)/$(UCLIBC_LDSO)"\";" >> $@
  298. $(interp): $(top_builddir)lib/interp.c
  299. $(compile.c)
  300. $(Q)$(STRIPTOOL) -x -R .note -R .comment $@
  301. $(ldso):
  302. @cd $(top_builddir); $(MAKE) lib/$(patsubst %.$(MAJOR_VERSION),%,$(notdir $@))
  303. $(libc):
  304. @cd $(top_builddir); $(MAKE) lib/$(patsubst %.$(MAJOR_VERSION),%,$(notdir $@))
  305. CRT := crt1
  306. ifeq ($(HAVE_SHARED)$(UCLIBC_FORMAT_SHARED_FLAT),y)
  307. CRTS=$(top_builddir)lib/$(CRT).o $(top_builddir)lib/S$(CRT).o
  308. else
  309. CRTS=$(top_builddir)lib/$(CRT).o
  310. endif
  311. ASFLAGS-$(CRT).o := -DL_$(CRT)
  312. ASFLAGS-S$(CRT).o := $(PIEFLAG) -DL_S$(CRT)
  313. $(CRTS): $(top_srcdir)libc/sysdeps/linux/$(TARGET_ARCH)/$(CRT).S
  314. $(Q)$(INSTALL) -d $(dir $@)
  315. $(compile.S)
  316. $(Q)$(STRIPTOOL) -x -R .note -R .comment $@
  317. ifeq ($(UCLIBC_CTOR_DTOR),y)
  318. CTOR_TARGETS=$(top_builddir)lib/crti.o $(top_builddir)lib/crtn.o
  319. else
  320. CTOR_TARGETS:=
  321. endif
  322. ifeq ($(UCLIBC_FORMAT_FDPIC_ELF),y)
  323. CRTRELOC=$(top_builddir)lib/crtreloc.o
  324. $(CRTRELOC): $(top_builddir)lib/%.o : $(top_srcdir)libc/sysdeps/linux/$(TARGET_ARCH)/%.c
  325. $(Q)$(INSTALL) -d $(dir $@)
  326. $(compile.c)
  327. endif
  328. ifneq ($(wildcard $(top_srcdir)libc/sysdeps/linux/$(TARGET_ARCH)/initfini.c),)
  329. CFLAGS-initfini.s := -S -g0 $(PICFLAG) -fno-inline-functions -finhibit-size-directive
  330. $(top_builddir)lib/initfini.s: $(top_srcdir)libc/sysdeps/linux/$(TARGET_ARCH)/initfini.c
  331. $(compile.c)
  332. $(top_builddir)lib/defs.h: $(top_builddir)lib/initfini.s
  333. $(Q)sed -n -e '/@TESTS_BEGIN/,/@TESTS_END/p' $< | \
  334. gawk -f $(top_srcdir)extra/scripts/defs.awk > $@.tmp
  335. $(Q)mv $@.tmp $@
  336. $(top_builddir)lib/crti.S: $(top_builddir)lib/initfini.s $(top_builddir)lib/defs.h
  337. $(Q)sed -n -e '1,/@HEADER_ENDS/p' \
  338. -e '/@_.*_PROLOG_BEGINS/,/@_.*_PROLOG_ENDS/p' \
  339. -e '/@TRAILER_BEGINS/,$$p' $< > $@
  340. $(top_builddir)lib/crtn.S: $(top_builddir)lib/initfini.s
  341. $(Q)sed -n -e '1,/@HEADER_ENDS/p' \
  342. -e '/@_.*_EPILOG_BEGINS/,/@_.*_EPILOG_ENDS/p' \
  343. -e '/@TRAILER_BEGINS/,$$p' $< > $@
  344. $(CTOR_TARGETS): $(top_builddir)lib/%.o : $(top_builddir)lib/%.S
  345. $(Q)$(INSTALL) -d $(dir $@)
  346. $(compile.S) $(PICFLAG) $(SSP_DISABLE_FLAGS)
  347. else
  348. $(CTOR_TARGETS): $(top_builddir)lib/%.o : $(top_srcdir)libc/sysdeps/linux/$(TARGET_ARCH)/%.S
  349. $(Q)$(INSTALL) -d $(dir $@)
  350. $(compile.S) $(PICFLAG) $(SSP_DISABLE_FLAGS)
  351. endif
  352. #ifeq ($(TARGET_ARCH),nios)
  353. #CRTS_COMPAT := $(top_builddir)lib/crt0.o
  354. #$(CRTS_COMPAT):
  355. # ln -fs crt1.o $(top_builddir)lib/crt0.o
  356. #else
  357. CRTS_COMPAT :=
  358. #endif
  359. $(crt-y): $(CRTS) $(CTOR_TARGETS) $(CRTS_COMPAT) $(CRTRELOC)
  360. $(CRTS) $(CTOR_TARGETS) $(CRTS_COMPAT) $(CRTRELOC): | headers
  361. $(top_builddir)lib/$(NONSHARED_LIBNAME): $(libc-nonshared-y)
  362. $(Q)$(INSTALL) -d $(dir $@)
  363. $(Q)$(RM) $@
  364. $(do_ar)
  365. $(top_builddir)lib/libpthread_nonshared.a: $(libpthread-nonshared-y)
  366. $(Q)$(INSTALL) -d $(dir $@)
  367. $(Q)$(RM) $@
  368. $(do_ar)
  369. files.dep := $(libc-a-y) $(libc-so-y) $(libc-nonshared-y) \
  370. $(libm-a-y) $(libm-so-y) \
  371. $(libpthread-a-y) $(libpthread-so-y) $(libpthread-nonshared-y) \
  372. $(libthread_db-a-y) $(libthread_db-so-y) \
  373. $(librt-a-y) $(librt-so-y) $(libresolv-a-y) $(libresolv-so-y) \
  374. $(libcrypt-a-y) $(libcrypt-so-y) $(libutil-a-y) $(libutil-so-y) \
  375. $(libnsl-a-y) $(libnsl-so-y) $(ldso-y) $(libdl-a-y) $(libdl-so-y)
  376. .depends.dep := \
  377. $(patsubst %.o,%.o.dep,$(filter %.o,$(files.dep))) \
  378. $(patsubst %.os,%.os.dep,$(filter %.os,$(files.dep))) \
  379. $(patsubst %.oS,%.oS.dep,$(filter %.oS,$(files.dep)))
  380. # Oh, and prepend a dot to the basename so i don't have to change my habit of
  381. # calling 'size thefile.o*'
  382. .depends.dep := $(foreach f,$(.depends.dep),$(dir $(f)).$(notdir $(f)))
  383. .depends.dep := $(wildcard $(.depends.dep))
  384. FORCE:
  385. clean: objclean-y headers_clean-y
  386. realclean: clean menuconfig-clean-y
  387. $(Q)$(RM) $(.depends.dep)
  388. objclean-y: $(objclean-y)
  389. headers_clean-y: $(headers_clean-y)
  390. ifeq ($(filter $(noconfig_targets),$(MAKECMDGOALS)),)
  391. ifneq ($(strip $(.depends.dep)),)
  392. .NOEXPORT:
  393. -include $(.depends.dep)
  394. endif
  395. endif
  396. # vi: ft=make :