Makefile 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350
  1. # This file is part of the OpenADK project. OpenADK is copyrighted
  2. # material, please see the LICENCE file in the top-level directory.
  3. _IN_CVTC= 1
  4. include $(ADK_TOPDIR)/rules.mk
  5. include ../rules.mk
  6. include Makefile.inc
  7. include ${ADK_TOPDIR}/mk/buildhlp.mk
  8. TARGET_CFLAGS:=$(filter-out -flto,$(TARGET_CFLAGS))
  9. # handled by uClibc-ng makefiles
  10. TARGET_CFLAGS:=$(filter-out -fstack-protector-all,$(TARGET_CFLAGS))
  11. TARGET_LDFLAGS:=$(filter-out -fstack-protector-all,$(TARGET_LDFLAGS))
  12. ifeq ($(ADK_TARGET_HARD_FLOAT),y)
  13. ifeq ($(ADK_TARGET_ARCH_ARM),y)
  14. TARGET_CFLAGS+= -Wa,-mfloat-abi=hard
  15. endif
  16. ifeq ($(ADK_TARGET_ARCH_MIPS),y)
  17. TARGET_CFLAGS+= -Wa,-mhard-float
  18. endif
  19. endif
  20. ifeq ($(ADK_TARGET_SOFT_FLOAT),y)
  21. ifeq ($(ADK_TARGET_ARCH_ARM),y)
  22. TARGET_CFLAGS+= -Wa,-mfloat-abi=soft
  23. endif
  24. ifeq ($(ADK_TARGET_ARCH_MIPS),y)
  25. TARGET_CFLAGS+= -Wa,-msoft-float
  26. endif
  27. endif
  28. ifeq (${ADK_MAKE_PARALLEL},y)
  29. UCLIBC_MAKEOPTS+= -j${ADK_MAKE_JOBS}
  30. endif
  31. $(WRKBUILD)/.headers:
  32. $(SED) 's,^CROSS_COMPILE=.*,CROSS_COMPILE=$(TARGET_CROSS),g' $(WRKBUILD)/Rules.mak
  33. ifeq ($(ADK_TARGET_LIB_UCLIBC_NG_GIT),y)
  34. PATH='$(HOST_PATH)' sed -e 's^KERNEL_HEADERS.*$$KERNEL_HEADERS=\"${STAGING_TARGET_DIR}/usr/include\"' \
  35. $(ADK_TOPDIR)/target/$(ADK_TARGET_ARCH)/uclibc-ng.config >${WRKBUILD}/.config
  36. else
  37. PATH='$(HOST_PATH)' sed -e 's^KERNEL_HEADERS.*$$KERNEL_HEADERS=\"${STAGING_TARGET_DIR}/usr/include\"' \
  38. $(ADK_TOPDIR)/target/$(ADK_TARGET_ARCH)/uclibc.config >${WRKBUILD}/.config
  39. endif
  40. ifeq ($(ADK_TARGET_ENDIAN),little)
  41. $(SED) 's/.*\(ARCH_LITTLE_ENDIAN\).*/\1=y/' ${WRKBUILD}/.config
  42. $(SED) 's/.*\(ARCH_WANTS_LITTLE_ENDIAN\).*/\1=y/' ${WRKBUILD}/.config
  43. $(SED) 's/.*\(ARCH_BIG_ENDIAN\).*/# \1 is not set/' ${WRKBUILD}/.config
  44. $(SED) 's/.*\(ARCH_WANTS_BIG_ENDIAN\).*/# \1 is not set/' ${WRKBUILD}/.config
  45. else
  46. $(SED) 's/.*\(ARCH_BIG_ENDIAN\).*/\1=y/' ${WRKBUILD}/.config
  47. $(SED) 's/.*\(ARCH_WANTS_BIG_ENDIAN\).*/\1=y/' ${WRKBUILD}/.config
  48. $(SED) 's/.*\(ARCH_LITTLE_ENDIAN\).*/# \1 is not set/' ${WRKBUILD}/.config
  49. $(SED) 's/.*\(ARCH_WANTS_LITTLE_ENDIAN\).*/# \1 is not set/' ${WRKBUILD}/.config
  50. endif
  51. ifeq ($(ADK_TARGET_SOFT_FLOAT),y)
  52. $(SED) 's/.*\(UCLIBC_HAS_FPU\).*/# \1 is not set/' ${WRKBUILD}/.config
  53. $(SED) 's/.*\(UCLIBC_HAS_SOFT_FLOAT\).*/#\1=y/' ${WRKBUILD}/.config
  54. endif
  55. ifeq ($(ADK_TARGET_HARD_FLOAT),y)
  56. $(SED) 's/.*\(UCLIBC_HAS_FPU\).*/\1=y/' ${WRKBUILD}/.config
  57. $(SED) 's/.*\(UCLIBC_HAS_SOFT_FLOAT\).*/# \1 is not set/' ${WRKBUILD}/.config
  58. endif
  59. ifeq ($(ADK_TARGET_BINFMT_FDPIC),y)
  60. $(SED) 's/.*\(UCLIBC_FORMAT_FDPIC_ELF\).*/\1=y/' ${WRKBUILD}/.config
  61. $(SED) 's/.*\(UCLIBC_FORMAT_FLAT\).*/# \1 is not set/' ${WRKBUILD}/.config
  62. $(SED) 's/.*\(UCLIBC_FORMAT_FLAT_SEP_DATA\).*/# \1 is not set/' ${WRKBUILD}/.config
  63. $(SED) 's/.*\(UCLIBC_FORMAT_FLAT_SHARED\).*/# \1 is not set/' ${WRKBUILD}/.config
  64. endif
  65. ifeq ($(ADK_TARGET_BINFMT_FLAT),y)
  66. ifeq ($(ADK_TARGET_BINFMT_FLAT_ONE),y)
  67. $(SED) 's/.*\(UCLIBC_FORMAT_FLAT\).*/\1=y/' ${WRKBUILD}/.config
  68. $(SED) 's/.*\(UCLIBC_FORMAT_FLAT_SEP_DATA\).*/# \1 is not set/' ${WRKBUILD}/.config
  69. $(SED) 's/.*\(UCLIBC_FORMAT_FLAT_SHARED\).*/# \1 is not set/' ${WRKBUILD}/.config
  70. $(SED) 's/.*\(UCLIBC_FORMAT_FDPIC_ELF\).*/# \1 is not set/' ${WRKBUILD}/.config
  71. endif
  72. ifeq ($(ADK_TARGET_BINFMT_FLAT_SEP_DATA),y)
  73. $(SED) 's/.*\(UCLIBC_FORMAT_FLAT_SEP_DATA\).*/\1=y/' ${WRKBUILD}/.config
  74. $(SED) 's/.*\(UCLIBC_FORMAT_FLAT\).*/# \1 is not set/' ${WRKBUILD}/.config
  75. $(SED) 's/.*\(UCLIBC_FORMAT_FLAT_SHARED\).*/# \1 is not set/' ${WRKBUILD}/.config
  76. $(SED) 's/.*\(UCLIBC_FORMAT_FDPIC_ELF\).*/# \1 is not set/' ${WRKBUILD}/.config
  77. endif
  78. ifeq ($(ADK_TARGET_BINFMT_FLAT_SHARED),y)
  79. $(SED) 's/.*\(UCLIBC_FORMAT_FLAT_SHARED\).*/\1=y/' ${WRKBUILD}/.config
  80. $(SED) 's/.*\(UCLIBC_FORMAT_FLAT\).*/# \1 is not set/' ${WRKBUILD}/.config
  81. $(SED) 's/.*\(UCLIBC_FORMAT_FLAT_SEP_DATA\).*/# \1 is not set/' ${WRKBUILD}/.config
  82. $(SED) 's/.*\(UCLIBC_FORMAT_FDPIC_ELF\).*/# \1 is not set/' ${WRKBUILD}/.config
  83. endif
  84. endif
  85. ifeq ($(ADK_TARGET_LIBC_ICONV),y)
  86. $(SED) 's/.*\(UCLIBC_HAS_LOCALE\).*/\1=y/' ${WRKBUILD}/.config
  87. endif
  88. ifeq ($(ADK_TARGET_UCLINUX),y)
  89. $(SED) 's/.*\(ARCH_USE_MMU\).*/# \1 is not set/' ${WRKBUILD}/.config
  90. endif
  91. ifeq ($(ADK_TARGET_LIB_UCLIBC_NG_GIT),y)
  92. ifeq ($(ADK_TARGET_WITH_NPTL),y)
  93. $(SED) 's/.*\(UCLIBC_HAS_THREADS_NATIVE\).*/\1=y/' ${WRKBUILD}/.config
  94. $(SED) 's/.*\(UCLIBC_HAS_TLS\).*/\1=y/' ${WRKBUILD}/.config
  95. $(SED) 's/.*\(PTHREADS_DEBUG_SUPPORT\).*/\1=y/' ${WRKBUILD}/.config
  96. $(SED) 's/.*\(UCLIBC_HAS_LINUXTHREADS\).*/# \1 is not set/' ${WRKBUILD}/.config
  97. $(SED) 's/.*\(HAS_NO_THREADS\).*/# \1 is not set/' ${WRKBUILD}/.config
  98. endif
  99. ifeq ($(ADK_TARGET_WITH_LT),y)
  100. $(SED) 's/.*\(UCLIBC_HAS_LINUXTHREADS\).*/\1=y/' ${WRKBUILD}/.config
  101. $(SED) 's/.*\(UCLIBC_HAS_THREADS_NATIVE\).*/# \1 is not set/' ${WRKBUILD}/.config
  102. $(SED) 's/.*\(UCLIBC_HAS_TLS\).*/# \1 is not set/' ${WRKBUILD}/.config
  103. $(SED) 's/.*\(PTHREADS_DEBUG_SUPPORT\).*/\1=y/' ${WRKBUILD}/.config
  104. $(SED) 's/.*\(HAS_NO_THREADS\).*/# \1 is not set/' ${WRKBUILD}/.config
  105. endif
  106. ifeq ($(ADK_TARGET_LIB_WITHOUT_THREADS)$(ADK_TARGET_WITHOUT_THREADS),y)
  107. $(SED) 's/.*\(UCLIBC_HAS_LINUXTHREADS\).*/# \1 is not set/' ${WRKBUILD}/.config
  108. $(SED) 's/.*\(UCLIBC_HAS_THREADS_NATIVE\).*/# \1 is not set/' ${WRKBUILD}/.config
  109. $(SED) 's/.*\(UCLIBC_HAS_TLS\).*/# \1 is not set/' ${WRKBUILD}/.config
  110. $(SED) 's/.*\(PTHREADS_DEBUG_SUPPORT\).*/# \1 is not set/' ${WRKBUILD}/.config
  111. $(SED) 's/.*\(HAS_NO_THREADS\).*/\1=y/' ${WRKBUILD}/.config
  112. endif
  113. endif
  114. ifeq ($(ADK_TARGET_LIB_UCLIBC_NG_1_0),y)
  115. ifeq ($(ADK_TARGET_WITH_NPTL),y)
  116. $(SED) 's/.*\(UCLIBC_HAS_THREADS_NATIVE\).*/\1=y/' ${WRKBUILD}/.config
  117. $(SED) 's/.*\(UCLIBC_HAS_TLS\).*/\1=y/' ${WRKBUILD}/.config
  118. $(SED) 's/.*\(PTHREADS_DEBUG_SUPPORT\).*/\1=y/' ${WRKBUILD}/.config
  119. $(SED) 's/.*\(LINUXTHREADS_OLD\).*/# \1 is not set/' ${WRKBUILD}/.config
  120. $(SED) 's/.*\(LINUXTHREADS_NEW\).*/# \1 is not set/' ${WRKBUILD}/.config
  121. $(SED) 's/.*\(HAS_NO_THREADS\).*/# \1 is not set/' ${WRKBUILD}/.config
  122. endif
  123. ifeq ($(ADK_TARGET_WITH_LT),y)
  124. $(SED) 's/.*\(UCLIBC_HAS_THREADS_NATIVE\).*/# \1 is not set/' ${WRKBUILD}/.config
  125. $(SED) 's/.*\(UCLIBC_HAS_TLS\).*/# \1 is not set/' ${WRKBUILD}/.config
  126. $(SED) 's/.*\(LINUXTHREADS_OLD\).*/\1=y/' ${WRKBUILD}/.config
  127. $(SED) 's/.*\(LINUXTHREADS_NEW\).*/# \1 is not set/' ${WRKBUILD}/.config
  128. $(SED) 's/.*\(HAS_NO_THREADS\).*/# \1 is not set/' ${WRKBUILD}/.config
  129. endif
  130. ifeq ($(ADK_TARGET_LIB_WITHOUT_THREADS)$(ADK_TARGET_WITHOUT_THREADS),y)
  131. $(SED) 's/.*\(LINUXTHREADS_OLD\).*/# \1 is not set/' ${WRKBUILD}/.config
  132. $(SED) 's/.*\(LINUXTHREADS_NEW\).*/# \1 is not set/' ${WRKBUILD}/.config
  133. $(SED) 's/.*\(UCLIBC_HAS_THREADS_NATIVE\).*/# \1 is not set/' ${WRKBUILD}/.config
  134. $(SED) 's/.*\(UCLIBC_HAS_TLS\).*/# \1 is not set/' ${WRKBUILD}/.config
  135. $(SED) 's/.*\(PTHREADS_DEBUG_SUPPORT\).*/# \1 is not set/' ${WRKBUILD}/.config
  136. $(SED) 's/.*\(HAS_NO_THREADS\).*/\1=y/' ${WRKBUILD}/.config
  137. endif
  138. endif
  139. ifeq ($(ADK_TARGET_USE_STATIC_LIBS)$(ADK_TARGET_BINFMT_FLAT),)
  140. $(SED) 's/.*\(HAVE_SHARED\).*/\1=y/' ${WRKBUILD}/.config
  141. else
  142. $(SED) 's/.*\(HAVE_SHARED\).*/# \1 is not set/' ${WRKBUILD}/.config
  143. endif
  144. ifeq ($(ADK_TARGET_USE_GNU_HASHSTYLE),y)
  145. $(SED) 's/.*\(LDSO_GNU_HASH_SUPPORT\).*/#\1=y/' ${WRKBUILD}/.config
  146. else
  147. $(SED) 's/.*\(LDSO_GNU_HASH_SUPPORT\).*/# \1 is not set/' ${WRKBUILD}/.config
  148. endif
  149. ifeq ($(ADK_TARGET_USE_SSP),y)
  150. $(SED) 's,.*UCLIBC_HAS_SSP,UCLIBC_HAS_SSP=y,' ${WRKBUILD}/.config
  151. echo "UCLIBC_HAS_SSP_COMPAT=n" >> ${WRKBUILD}/.config
  152. echo "SSP_QUICK_CANARY=n" >> ${WRKBUILD}/.config
  153. echo "UCLIBC_BUILD_SSP=y" >> ${WRKBUILD}/.config
  154. endif
  155. #
  156. # architecture specific options
  157. #
  158. # arc
  159. ifeq ($(ADK_TARGET_ARCH_ARC),y)
  160. ifeq ($(ADK_CPU_ARC700),y)
  161. $(SED) 's/.*\(CONFIG_ARC_CPU_HS\).*/# \1 is not set/' ${WRKBUILD}/.config
  162. $(SED) 's/.*\(CONFIG_ARC_CPU_700\).*/\1=y/' ${WRKBUILD}/.config
  163. endif
  164. ifeq ($(ADK_CPU_ARC_HS),y)
  165. $(SED) 's/.*\(CONFIG_ARC_CPU_700\).*/# \1 is not set/' ${WRKBUILD}/.config
  166. $(SED) 's/.*\(CONFIG_ARC_CPU_HS\).*/\1=y/' ${WRKBUILD}/.config
  167. endif
  168. endif
  169. # arm
  170. ifeq ($(ADK_TARGET_ARCH_ARM),y)
  171. ifeq ($(ADK_TARGET_ARCH_ARM_WITH_THUMB),y)
  172. $(SED) 's/.*\(COMPILE_IN_THUMB_MODE\).*/\1=y/' ${WRKBUILD}/.config
  173. $(SED) 's/.*\(UCLIBC_HAS_CONTEXT_FUNCS\).*/# \1 is not set/' ${WRKBUILD}/.config
  174. endif
  175. endif
  176. # cris
  177. ifeq ($(ADK_TARGET_ARCH_CRIS),y)
  178. ifeq ($(ADK_CPU_CRIS_V32),y)
  179. $(SED) 's/.*\(CONFIG_CRIS=\).*/# \1 is not set/' ${WRKBUILD}/.config
  180. $(SED) 's/.*\(CONFIG_CRISV32\).*/\1=y/' ${WRKBUILD}/.config
  181. endif
  182. ifeq ($(ADK_CPU_CRIS_V10),y)
  183. $(SED) 's/.*\(CONFIG_CRIS=\).*/\1=y/' ${WRKBUILD}/.config
  184. $(SED) 's/.*\(CONFIG_CRISV32\).*/# \1 is not set/' ${WRKBUILD}/.config
  185. endif
  186. endif
  187. # mips
  188. ifeq ($(ADK_TARGET_ARCH_MIPS),y)
  189. ifeq ($(ADK_CPU_MIPS32R2),y)
  190. $(SED) 's/.*\(CONFIG_MIPS_ISA_MIPS32 \).*/# \1 is not set/' ${WRKBUILD}/.config
  191. $(SED) 's/.*\(CONFIG_MIPS_ISA_MIPS32R2\).*/\1=y/' ${WRKBUILD}/.config
  192. endif
  193. endif
  194. # sh
  195. ifeq ($(ADK_TARGET_ARCH_SH),y)
  196. ifeq ($(ADK_CPU_SH4),y)
  197. $(SED) 's/.*\(CONFIG_SH2A=\).*/# \1 is not set/' ${WRKBUILD}/.config
  198. $(SED) 's/.*\(CONFIG_SH2=\).*/# \1 is not set/' ${WRKBUILD}/.config
  199. $(SED) 's/.*\(CONFIG_SH3=\).*/# \1 is not set/' ${WRKBUILD}/.config
  200. $(SED) 's/.*\(CONFIG_SH4\).*/\1=y/' ${WRKBUILD}/.config
  201. endif
  202. ifeq ($(ADK_CPU_SH3),y)
  203. $(SED) 's/.*\(CONFIG_SH2A=\).*/# \1 is not set/' ${WRKBUILD}/.config
  204. $(SED) 's/.*\(CONFIG_SH2=\).*/# \1 is not set/' ${WRKBUILD}/.config
  205. $(SED) 's/.*\(CONFIG_SH4=\).*/# \1 is not set/' ${WRKBUILD}/.config
  206. $(SED) 's/.*\(CONFIG_SH3\).*/\1=y/' ${WRKBUILD}/.config
  207. endif
  208. ifeq ($(ADK_CPU_SH2),y)
  209. $(SED) 's/.*\(CONFIG_SH2A=\).*/# \1 is not set/' ${WRKBUILD}/.config
  210. $(SED) 's/.*\(CONFIG_SH3=\).*/# \1 is not set/' ${WRKBUILD}/.config
  211. $(SED) 's/.*\(CONFIG_SH4=\).*/# \1 is not set/' ${WRKBUILD}/.config
  212. $(SED) 's/.*\(CONFIG_SH2\).*/\1=y/' ${WRKBUILD}/.config
  213. endif
  214. ifeq ($(ADK_CPU_SH2A),y)
  215. $(SED) 's/.*\(CONFIG_SH2A=\).*/# \1 is not set/' ${WRKBUILD}/.config
  216. $(SED) 's/.*\(CONFIG_SH3=\).*/# \1 is not set/' ${WRKBUILD}/.config
  217. $(SED) 's/.*\(CONFIG_SH4=\).*/# \1 is not set/' ${WRKBUILD}/.config
  218. $(SED) 's/.*\(CONFIG_SH2A\).*/\1=y/' ${WRKBUILD}/.config
  219. endif
  220. endif
  221. # x86
  222. ifeq ($(ADK_TARGET_ARCH_X86),y)
  223. ifeq ($(ADK_CPU_I486),y)
  224. $(SED) 's/.*\(CONFIG_686\).*/# \1 is not set/' ${WRKBUILD}/.config
  225. $(SED) 's/.*\(CONFIG_586\).*/# \1 is not set/' ${WRKBUILD}/.config
  226. $(SED) 's/.*\(CONFIG_486\).*/\1=y/' ${WRKBUILD}/.config
  227. endif
  228. ifeq ($(ADK_CPU_I586),y)
  229. $(SED) 's/.*\(CONFIG_686\).*/# \1 is not set/' ${WRKBUILD}/.config
  230. $(SED) 's/.*\(CONFIG_586\).*/\1=y/' ${WRKBUILD}/.config
  231. $(SED) 's/.*\(CONFIG_486\).*/# \1 is not set/' ${WRKBUILD}/.config
  232. endif
  233. ifeq ($(ADK_CPU_I686),y)
  234. $(SED) 's/.*\(CONFIG_686\).*/\1=y/' ${WRKBUILD}/.config
  235. $(SED) 's/.*\(CONFIG_586\).*/# \1 is not set/' ${WRKBUILD}/.config
  236. $(SED) 's/.*\(CONFIG_486\).*/# \1 is not set/' ${WRKBUILD}/.config
  237. endif
  238. endif
  239. # mips64
  240. ifeq ($(ADK_TARGET_ARCH_MIPS64),y)
  241. $(SED) 's/.*\(CONFIG_MIPS_ISA_MIPS64\).*/\1=y/' ${WRKBUILD}/.config
  242. $(SED) 's/.*\(CONFIG_MIPS_ISA_MIPS32\).*/# \1 is not set/' ${WRKBUILD}/.config
  243. ifeq ($(ADK_TARGET_ABI_N64),y)
  244. $(SED) 's/.*\(CONFIG_MIPS_N64_ABI\).*/\1=y/' ${WRKBUILD}/.config
  245. $(SED) 's/.*\(CONFIG_MIPS_O32_ABI\).*/# \1 is not set/' ${WRKBUILD}/.config
  246. $(SED) 's/.*\(CONFIG_MIPS_N32_ABI\).*/# \1 is not set/' ${WRKBUILD}/.config
  247. endif
  248. ifeq ($(ADK_TARGET_ABI_N32),y)
  249. $(SED) 's/.*\(CONFIG_MIPS_N32_ABI\).*/\1=y/' ${WRKBUILD}/.config
  250. $(SED) 's/.*\(CONFIG_MIPS_O32_ABI\).*/# \1 is not set/' ${WRKBUILD}/.config
  251. $(SED) 's/.*\(CONFIG_MIPS_N64_ABI\).*/# \1 is not set/' ${WRKBUILD}/.config
  252. endif
  253. ifeq ($(ADK_TARGET_ABI_O32),y)
  254. $(SED) 's/.*\(CONFIG_MIPS_O32_ABI\).*/\1=y/' ${WRKBUILD}/.config
  255. $(SED) 's/.*\(CONFIG_MIPS_N32_ABI\).*/# \1 is not set/' ${WRKBUILD}/.config
  256. $(SED) 's/.*\(CONFIG_MIPS_N64_ABI\).*/# \1 is not set/' ${WRKBUILD}/.config
  257. endif
  258. endif
  259. echo N|PATH='$(HOST_PATH)' $(MAKE) ${UCLIBC_MAKEOPTS} -C $(WRKBUILD) \
  260. PREFIX=$(STAGING_TARGET_DIR) \
  261. DEVEL_PREFIX=/usr/ \
  262. RUNTIME_PREFIX=$(STAGING_TARGET_DIR) \
  263. HOSTCC="$(HOST_CC)" \
  264. UCLIBC_EXTRA_CFLAGS="$(TARGET_CFLAGS)" \
  265. UCLIBC_EXTRA_LDFLAGS="$(TARGET_LDFLAGS)" \
  266. oldconfig
  267. PATH='$(HOST_PATH)' $(MAKE) ${UCLIBC_MAKEOPTS} -C $(WRKBUILD) \
  268. PREFIX=$(STAGING_TARGET_DIR) \
  269. DEVEL_PREFIX=/usr/ \
  270. RUNTIME_PREFIX=$(STAGING_TARGET_DIR) \
  271. HOSTCC="$(HOST_CC)" \
  272. UCLIBC_EXTRA_CFLAGS="$(TARGET_CFLAGS)" \
  273. UCLIBC_EXTRA_LDFLAGS="$(TARGET_LDFLAGS)" \
  274. install_headers
  275. touch $(WRKBUILD)/.configured
  276. touch $@
  277. $(WRKBUILD)/.compiled:
  278. PATH='$(HOST_PATH)' $(MAKE) ${UCLIBC_MAKEOPTS} -C $(WRKBUILD) \
  279. PREFIX= \
  280. DEVEL_PREFIX=/usr/ \
  281. RUNTIME_PREFIX=/ \
  282. HOSTCC="$(HOST_CC)" \
  283. UCLIBC_EXTRA_CFLAGS="$(TARGET_CFLAGS)" \
  284. UCLIBC_EXTRA_LDFLAGS="$(TARGET_LDFLAGS)" \
  285. VERBOSE=1 \
  286. all
  287. touch $@
  288. $(WRKBUILD)/.install_headers: $(WRKBUILD)/.compiled
  289. PATH='$(HOST_PATH)' $(MAKE) -C $(WRKBUILD) \
  290. PREFIX=$(STAGING_TARGET_DIR) \
  291. DEVEL_PREFIX=/usr/ \
  292. DEVEL_PREFIX_LIB=/ \
  293. RUNTIME_PREFIX=/ \
  294. UCLIBC_EXTRA_CFLAGS="$(TARGET_CFLAGS)" \
  295. UCLIBC_EXTRA_LDFLAGS="$(TARGET_LDFLAGS)" \
  296. VERBOSE=1 \
  297. install_dev
  298. touch $@
  299. $(WRKBUILD)/.installed: $(WRKBUILD)/.install_headers
  300. PATH='$(HOST_PATH)' $(MAKE) -C $(WRKBUILD) \
  301. PREFIX=$(STAGING_TARGET_DIR) \
  302. DEVEL_PREFIX=/usr/ \
  303. DEVEL_PREFIX_LIB=/ \
  304. RUNTIME_PREFIX=/ \
  305. UCLIBC_EXTRA_CFLAGS="$(TARGET_CFLAGS)" \
  306. UCLIBC_EXTRA_LDFLAGS="$(TARGET_LDFLAGS)" \
  307. VERBOSE=1 \
  308. install_runtime
  309. touch $@
  310. $(WRKBUILD)/.fixup:
  311. ifeq ($(ADK_UCLIBC_TEST),y)
  312. PATH='$(HOST_PATH)' $(MAKE) -C $(WRKBUILD) \
  313. CC='$(TARGET_CC)' \
  314. TEST_INSTALLED_UCLIBC=1 \
  315. UCLIBC_ONLY=1 \
  316. UCLIBC_EXTRA_CFLAGS="$(TARGET_CFLAGS)" \
  317. UCLIBC_EXTRA_LDFLAGS="$(TARGET_LDFLAGS)" \
  318. VERBOSE=1 \
  319. test_compile test_gen
  320. endif
  321. ifeq ($(ADK_TARGET_TOOLCHAIN),y)
  322. # cleanup toolchain
  323. -find $(STAGING_TARGET_DIR) $(STAGING_HOST_DIR) -name \*.la -exec rm {} \;
  324. # strip target libs and host tools for toolchain builds
  325. PATH="$(TARGET_PATH)" debug='0' prefix='${TARGET_CROSS}' ${BASH} ${SCRIPT_DIR}/rstrip.sh \
  326. $(STAGING_TARGET_DIR) $(TOOLCHAIN_DIR)/usr/lib/gcc/$(GNU_TARGET_NAME)
  327. debug='0' prefix=' ' ${BASH} ${SCRIPT_DIR}/rstrip.sh $(TOOLCHAIN_DIR)/usr/bin
  328. endif
  329. touch $@
  330. include ${ADK_TOPDIR}/mk/toolchain.mk