Makefile.in 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447
  1. ifndef MAKE
  2. MAKE := make
  3. endif
  4. ifndef HOSTMAKE
  5. HOSTMAKE = $(MAKE)
  6. endif
  7. HOSTMAKE := $(shell which $(HOSTMAKE) || type -p $(HOSTMAKE) || echo make)
  8. # If BR2_JLEVEL is 0, scale the maximum concurrency with the number of
  9. # CPUs. An additional job is used in order to keep processors busy
  10. # while waiting on I/O.
  11. # If the number of processors is not available, assume one.
  12. ifeq ($(BR2_JLEVEL),0)
  13. PARALLEL_JOBS := $(shell echo \
  14. $$((1 + `getconf _NPROCESSORS_ONLN 2>/dev/null || echo 1`)))
  15. else
  16. PARALLEL_JOBS := $(BR2_JLEVEL)
  17. endif
  18. MAKE1 := $(HOSTMAKE) -j1
  19. override MAKE = $(HOSTMAKE) \
  20. $(if $(findstring j,$(filter-out --%,$(MAKEFLAGS))),,-j$(PARALLEL_JOBS))
  21. ifeq ($(BR2_TOOLCHAIN_BUILDROOT),y)
  22. TARGET_VENDOR = $(call qstrip,$(BR2_TOOLCHAIN_BUILDROOT_VENDOR))
  23. else
  24. TARGET_VENDOR = buildroot
  25. endif
  26. # Sanity checks
  27. ifeq ($(TARGET_VENDOR),)
  28. $(error BR2_TOOLCHAIN_BUILDROOT_VENDOR is not allowed to be empty)
  29. endif
  30. ifeq ($(TARGET_VENDOR),unknown)
  31. $(error BR2_TOOLCHAIN_BUILDROOT_VENDOR cannot be 'unknown'. \
  32. It might be confused with the native toolchain)
  33. endif
  34. # Compute GNU_TARGET_NAME
  35. GNU_TARGET_NAME = $(ARCH)-$(TARGET_VENDOR)-$(TARGET_OS)-$(LIBC)$(ABI)
  36. # FLAT binary format needs uclinux, except RISC-V 64-bits which needs
  37. # the regular linux name.
  38. ifeq ($(BR2_BINFMT_FLAT):$(BR2_RISCV_64),y:)
  39. TARGET_OS = uclinux
  40. else
  41. TARGET_OS = linux
  42. endif
  43. ifeq ($(BR2_TOOLCHAIN_USES_UCLIBC),y)
  44. LIBC = uclibc
  45. else ifeq ($(BR2_TOOLCHAIN_USES_MUSL),y)
  46. LIBC = musl
  47. else ifeq ($(BR2_TOOLCHAIN_USES_GLIBC),y)
  48. LIBC = gnu
  49. else ifeq ($(BR_BUILDING),y)
  50. # This happens if there is a bug in Buildroot that allows an
  51. # architecture configuration that isn't supported by any library.
  52. $(error No C library enabled, this is not possible.)
  53. endif
  54. # The ABI suffix is a bit special on ARM, as it needs to be
  55. # -uclibcgnueabi for uClibc EABI, and -gnueabi for glibc EABI.
  56. # This means that the LIBC and ABI aren't strictly orthogonal,
  57. # which explains why we need the test on LIBC below.
  58. ifeq ($(BR2_arm)$(BR2_armeb),y)
  59. ifeq ($(LIBC),uclibc)
  60. ABI = gnueabi
  61. else
  62. ABI = eabi
  63. endif
  64. ifeq ($(BR2_ARM_EABIHF),y)
  65. ABI := $(ABI)hf
  66. endif
  67. endif
  68. # For FSL PowerPC there's SPE
  69. ifeq ($(BR2_POWERPC_CPU_HAS_SPE),y)
  70. ABI = spe
  71. # MPC8540s are e500v1 with single precision FP
  72. ifeq ($(BR2_powerpc_8540),y)
  73. TARGET_ABI += -mabi=spe -mfloat-gprs=single -Wa,-me500
  74. endif
  75. ifeq ($(BR2_powerpc_8548),y)
  76. TARGET_ABI += -mabi=spe -mfloat-gprs=double -Wa,-me500x2
  77. endif
  78. ifeq ($(BR2_powerpc_e500mc),y)
  79. TARGET_ABI += -mabi=spe -mfloat-gprs=double -Wa,-me500mc
  80. endif
  81. endif
  82. # Use longcalls option for Xtensa globally.
  83. # The 'longcalls' option allows calls across a greater range of addresses,
  84. # and is required for some packages. While this option can degrade both
  85. # code size and performance, the linker can usually optimize away the
  86. # overhead when a call ends up within a certain range.
  87. #
  88. # Use auto-litpools for Xtensa globally.
  89. # Collecting literals into separate section can be advantageous if that
  90. # section is placed into DTCM at link time. This is applicable for code
  91. # running on bare metal, but makes no sense under linux, where userspace
  92. # is isolated from the physical memory details. OTOH placing literals into
  93. # separate section breaks build of huge source files, because l32r
  94. # instruction can only access literals in 256 KBytes range.
  95. #
  96. ifeq ($(BR2_xtensa),y)
  97. TARGET_ABI += -mlongcalls -mauto-litpools
  98. endif
  99. STAGING_SUBDIR = $(GNU_TARGET_NAME)/sysroot
  100. STAGING_DIR = $(HOST_DIR)/$(STAGING_SUBDIR)
  101. ifeq ($(BR2_OPTIMIZE_0),y)
  102. TARGET_OPTIMIZATION = -O0
  103. endif
  104. ifeq ($(BR2_OPTIMIZE_1),y)
  105. TARGET_OPTIMIZATION = -O1
  106. endif
  107. ifeq ($(BR2_OPTIMIZE_2),y)
  108. TARGET_OPTIMIZATION = -O2
  109. endif
  110. ifeq ($(BR2_OPTIMIZE_3),y)
  111. TARGET_OPTIMIZATION = -O3
  112. endif
  113. ifeq ($(BR2_OPTIMIZE_G),y)
  114. TARGET_OPTIMIZATION = -Og
  115. endif
  116. ifeq ($(BR2_OPTIMIZE_S),y)
  117. TARGET_OPTIMIZATION = -Os
  118. endif
  119. ifeq ($(BR2_OPTIMIZE_FAST),y)
  120. TARGET_OPTIMIZATION = -Ofast
  121. endif
  122. ifeq ($(BR2_ENABLE_DEBUG),)
  123. TARGET_DEBUGGING = -g0
  124. endif
  125. ifeq ($(BR2_DEBUG_1),y)
  126. TARGET_DEBUGGING = -g1
  127. endif
  128. ifeq ($(BR2_DEBUG_2),y)
  129. TARGET_DEBUGGING = -g2
  130. endif
  131. ifeq ($(BR2_DEBUG_3),y)
  132. TARGET_DEBUGGING = -g3
  133. endif
  134. TARGET_LDFLAGS = $(call qstrip,$(BR2_TARGET_LDFLAGS))
  135. # By design, _FORTIFY_SOURCE requires gcc optimization to be enabled.
  136. # Therefore, we need to pass _FORTIFY_SOURCE and the optimization level
  137. # through the same mechanism, i.e currently through CFLAGS. Passing
  138. # _FORTIFY_SOURCE through the wrapper and the optimization level
  139. # through CFLAGS would not work, because CFLAGS are sometimes
  140. # ignored/overridden by packages, but the flags passed by the wrapper
  141. # are enforced: this would cause _FORTIFY_SOURCE to be used without any
  142. # optimization level, leading to a build / configure failure. So we keep
  143. # passing _FORTIFY_SOURCE and the optimization level both through CFLAGS.
  144. ifeq ($(BR2_FORTIFY_SOURCE_1),y)
  145. TARGET_HARDENED += -D_FORTIFY_SOURCE=1
  146. else ifeq ($(BR2_FORTIFY_SOURCE_2),y)
  147. TARGET_HARDENED += -D_FORTIFY_SOURCE=2
  148. else ifeq ($(BR2_FORTIFY_SOURCE_3),y)
  149. TARGET_HARDENED += -D_FORTIFY_SOURCE=3
  150. endif
  151. TARGET_CPPFLAGS += -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64
  152. TARGET_CFLAGS = $(TARGET_CPPFLAGS) $(TARGET_ABI) $(TARGET_OPTIMIZATION) $(TARGET_DEBUGGING) $(TARGET_HARDENED)
  153. TARGET_CXXFLAGS = $(TARGET_CFLAGS)
  154. TARGET_FCFLAGS = $(TARGET_ABI) $(TARGET_OPTIMIZATION) $(TARGET_DEBUGGING)
  155. # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=79509
  156. ifeq ($(BR2_m68k_cf),y)
  157. TARGET_CFLAGS += -fno-dwarf2-cfi-asm
  158. TARGET_CXXFLAGS += -fno-dwarf2-cfi-asm
  159. endif
  160. ifeq ($(BR2_BINFMT_FLAT),y)
  161. ifeq ($(BR2_RISCV_64),y)
  162. TARGET_CFLAGS += -fPIC
  163. endif
  164. ifeq ($(BR2_BINFMT_FLAT_ONE),y)
  165. ELF2FLT_FLAGS = $(if $($(PKG)_FLAT_STACKSIZE),\
  166. -Wl$(comma)-elf2flt="-r -s$($(PKG)_FLAT_STACKSIZE)",\
  167. -Wl$(comma)-elf2flt=-r)
  168. else
  169. ELF2FLT_FLAGS = $(if $($(PKG)_FLAT_STACKSIZE),\
  170. -Wl$(comma)-elf2flt=-s$($(PKG)_FLAT_STACKSIZE),\
  171. -Wl$(comma)-elf2flt)
  172. endif
  173. TARGET_CFLAGS += $(ELF2FLT_FLAGS)
  174. TARGET_CXXFLAGS += $(ELF2FLT_FLAGS)
  175. TARGET_FCFLAGS += $(ELF2FLT_FLAGS)
  176. TARGET_LDFLAGS += $(ELF2FLT_FLAGS)
  177. endif
  178. ifeq ($(BR2_BINFMT_FLAT_SHARED),y)
  179. TARGET_LDFLAGS += -mid-shared-library -mshared-library-id=0
  180. TARGET_CFLAGS += -mid-shared-library -mshared-library-id=0
  181. TARGET_FCFLAGS += -mid-shared-library -mshared-library-id=0
  182. TARGET_CXXFLAGS += -mid-shared-library -mshared-library-id=0
  183. endif
  184. ifeq ($(BR2_TOOLCHAIN_BUILDROOT),y)
  185. TARGET_CROSS = $(HOST_DIR)/bin/$(GNU_TARGET_NAME)-
  186. else
  187. TARGET_CROSS = $(HOST_DIR)/bin/$(TOOLCHAIN_EXTERNAL_PREFIX)-
  188. endif
  189. # gcc-4.7 and later ships with wrappers that will automatically pass
  190. # arguments to the binutils tools. Those are paths to necessary linker
  191. # plugins.
  192. ifeq ($(BR2_TOOLCHAIN_GCC_AT_LEAST_4_7),y)
  193. TARGET_GCC_WRAPPERS_PREFIX = gcc-
  194. endif
  195. # Define TARGET_xx variables for all common binutils/gcc
  196. TARGET_AR = $(TARGET_CROSS)$(TARGET_GCC_WRAPPERS_PREFIX)ar
  197. TARGET_AS = $(TARGET_CROSS)as
  198. TARGET_CC = $(TARGET_CROSS)gcc
  199. TARGET_CPP = $(TARGET_CROSS)cpp
  200. TARGET_CXX = $(TARGET_CROSS)g++
  201. TARGET_FC = $(TARGET_CROSS)gfortran
  202. TARGET_LD = $(TARGET_CROSS)ld
  203. TARGET_NM = $(TARGET_CROSS)$(TARGET_GCC_WRAPPERS_PREFIX)nm
  204. TARGET_RANLIB = $(TARGET_CROSS)$(TARGET_GCC_WRAPPERS_PREFIX)ranlib
  205. TARGET_READELF = $(TARGET_CROSS)readelf
  206. TARGET_OBJCOPY = $(TARGET_CROSS)objcopy
  207. TARGET_OBJDUMP = $(TARGET_CROSS)objdump
  208. ifeq ($(BR2_STRIP_strip),y)
  209. STRIP_STRIP_DEBUG := --strip-debug
  210. TARGET_STRIP = $(TARGET_CROSS)strip
  211. STRIPCMD = $(TARGET_CROSS)strip --remove-section=.comment --remove-section=.note
  212. else
  213. TARGET_STRIP = /bin/true
  214. STRIPCMD = $(TARGET_STRIP)
  215. endif
  216. INSTALL := $(shell which install || type -p install)
  217. UNZIP := $(shell which unzip || type -p unzip) -q
  218. APPLY_PATCHES = PATH=$(HOST_DIR)/bin:$$PATH support/scripts/apply-patches.sh $(if $(QUIET),-s)
  219. HOST_CPPFLAGS = -I$(HOST_DIR)/include
  220. HOST_CFLAGS ?= -O2
  221. HOST_CFLAGS += $(HOST_CPPFLAGS)
  222. HOST_CXXFLAGS += $(HOST_CFLAGS)
  223. HOST_LDFLAGS += -L$(HOST_DIR)/lib -Wl,-rpath,$(HOST_DIR)/lib
  224. # host-intltool should be executed with the system perl, so we save
  225. # the path to the system perl, before a host-perl built by Buildroot
  226. # might get installed into $(HOST_DIR)/bin and therefore appears
  227. # in our PATH. This system perl will be used as INTLTOOL_PERL.
  228. export PERL=$(shell which perl)
  229. # host-intltool needs libxml-parser-perl, which Buildroot installs in
  230. # $(HOST_DIR)/lib/perl, so we must make sure that the system perl
  231. # finds this perl module by exporting the proper value for PERL5LIB.
  232. export PERL5LIB=$(HOST_DIR)/lib/perl
  233. TARGET_MAKE_ENV = PATH=$(BR_PATH)
  234. TARGET_CONFIGURE_OPTS = \
  235. $(TARGET_MAKE_ENV) \
  236. AR="$(TARGET_AR)" \
  237. AS="$(TARGET_AS)" \
  238. LD="$(TARGET_LD)" \
  239. NM="$(TARGET_NM)" \
  240. CC="$(TARGET_CC)" \
  241. GCC="$(TARGET_CC)" \
  242. CPP="$(TARGET_CPP)" \
  243. CXX="$(TARGET_CXX)" \
  244. FC="$(TARGET_FC)" \
  245. F77="$(TARGET_FC)" \
  246. RANLIB="$(TARGET_RANLIB)" \
  247. READELF="$(TARGET_READELF)" \
  248. STRIP="$(TARGET_STRIP)" \
  249. OBJCOPY="$(TARGET_OBJCOPY)" \
  250. OBJDUMP="$(TARGET_OBJDUMP)" \
  251. AR_FOR_BUILD="$(HOSTAR)" \
  252. AS_FOR_BUILD="$(HOSTAS)" \
  253. CC_FOR_BUILD="$(HOSTCC)" \
  254. GCC_FOR_BUILD="$(HOSTCC)" \
  255. CXX_FOR_BUILD="$(HOSTCXX)" \
  256. LD_FOR_BUILD="$(HOSTLD)" \
  257. CPPFLAGS_FOR_BUILD="$(HOST_CPPFLAGS)" \
  258. CFLAGS_FOR_BUILD="$(HOST_CFLAGS)" \
  259. CXXFLAGS_FOR_BUILD="$(HOST_CXXFLAGS)" \
  260. LDFLAGS_FOR_BUILD="$(HOST_LDFLAGS)" \
  261. FCFLAGS_FOR_BUILD="$(HOST_FCFLAGS)" \
  262. DEFAULT_ASSEMBLER="$(TARGET_AS)" \
  263. DEFAULT_LINKER="$(TARGET_LD)" \
  264. CPPFLAGS="$(TARGET_CPPFLAGS)" \
  265. CFLAGS="$(TARGET_CFLAGS)" \
  266. CXXFLAGS="$(TARGET_CXXFLAGS)" \
  267. LDFLAGS="$(TARGET_LDFLAGS)" \
  268. FCFLAGS="$(TARGET_FCFLAGS)" \
  269. FFLAGS="$(TARGET_FCFLAGS)" \
  270. PKG_CONFIG="$(PKG_CONFIG_HOST_BINARY)" \
  271. STAGING_DIR="$(STAGING_DIR)" \
  272. INTLTOOL_PERL=$(PERL)
  273. HOST_MAKE_ENV = \
  274. PATH=$(BR_PATH) \
  275. PKG_CONFIG="$(PKG_CONFIG_HOST_BINARY)" \
  276. PKG_CONFIG_SYSROOT_DIR="/" \
  277. PKG_CONFIG_ALLOW_SYSTEM_CFLAGS=1 \
  278. PKG_CONFIG_ALLOW_SYSTEM_LIBS=1 \
  279. PKG_CONFIG_LIBDIR="$(HOST_DIR)/lib/pkgconfig:$(HOST_DIR)/share/pkgconfig"
  280. HOST_CONFIGURE_OPTS = \
  281. $(HOST_MAKE_ENV) \
  282. AR="$(HOSTAR)" \
  283. AS="$(HOSTAS)" \
  284. LD="$(HOSTLD)" \
  285. NM="$(HOSTNM)" \
  286. CC="$(HOSTCC)" \
  287. GCC="$(HOSTCC)" \
  288. CXX="$(HOSTCXX)" \
  289. CPP="$(HOSTCPP)" \
  290. OBJCOPY="$(HOSTOBJCOPY)" \
  291. RANLIB="$(HOSTRANLIB)" \
  292. CPPFLAGS="$(HOST_CPPFLAGS)" \
  293. CFLAGS="$(HOST_CFLAGS)" \
  294. CXXFLAGS="$(HOST_CXXFLAGS)" \
  295. LDFLAGS="$(HOST_LDFLAGS)" \
  296. INTLTOOL_PERL=$(PERL)
  297. # This is extra environment we can not export ourselves (eg. because some
  298. # packages use that variable internally, eg. uboot), so we have to
  299. # explicitly pass it to user-supplied external hooks (eg. post-build,
  300. # post-images)
  301. EXTRA_ENV = \
  302. PATH=$(BR_PATH) \
  303. BR2_DL_DIR=$(BR2_DL_DIR) \
  304. BUILD_DIR=$(BUILD_DIR) \
  305. CONFIG_DIR=$(CONFIG_DIR) \
  306. O=$(CANONICAL_O)
  307. ################################################################################
  308. # settings we need to pass to configure
  309. # does unaligned access trap?
  310. BR2_AC_CV_TRAP_CHECK = ac_cv_lbl_unaligned_fail=yes
  311. ifeq ($(BR2_i386),y)
  312. BR2_AC_CV_TRAP_CHECK = ac_cv_lbl_unaligned_fail=no
  313. endif
  314. ifeq ($(BR2_x86_64),y)
  315. BR2_AC_CV_TRAP_CHECK = ac_cv_lbl_unaligned_fail=no
  316. endif
  317. ifeq ($(BR2_m68k),y)
  318. BR2_AC_CV_TRAP_CHECK = ac_cv_lbl_unaligned_fail=no
  319. endif
  320. ifeq ($(BR2_powerpc)$(BR2_powerpc64)$(BR2_powerpc64le),y)
  321. BR2_AC_CV_TRAP_CHECK = ac_cv_lbl_unaligned_fail=no
  322. endif
  323. ifeq ($(BR2_ENDIAN),"BIG")
  324. BR2_AC_CV_C_BIGENDIAN = ac_cv_c_bigendian=yes
  325. else
  326. BR2_AC_CV_C_BIGENDIAN = ac_cv_c_bigendian=no
  327. endif
  328. # AM_GNU_GETTEXT misdetects musl gettext support.
  329. # musl currently implements api level 1 and 2 (basic + ngettext)
  330. # http://www.openwall.com/lists/musl/2015/04/16/3
  331. #
  332. # These autoconf variables should only be pre-seeded when the minimal
  333. # gettext implementation of musl is used. When the full blown
  334. # implementation provided by gettext libintl is used, auto-detection
  335. # works fine, and pre-seeding those values is actually wrong.
  336. ifeq ($(BR2_TOOLCHAIN_USES_MUSL):$(BR2_PACKAGE_GETTEXT_PROVIDES_LIBINTL),y:)
  337. BR2_GT_CV_FUNC_GNUGETTEXT_LIBC = \
  338. gt_cv_func_gnugettext1_libc=yes \
  339. gt_cv_func_gnugettext2_libc=yes
  340. endif
  341. TARGET_CONFIGURE_ARGS = \
  342. $(BR2_AC_CV_TRAP_CHECK) \
  343. ac_cv_func_mmap_fixed_mapped=yes \
  344. ac_cv_func_memcmp_working=yes \
  345. ac_cv_have_decl_malloc=yes \
  346. gl_cv_func_malloc_0_nonnull=yes \
  347. ac_cv_func_malloc_0_nonnull=yes \
  348. ac_cv_func_calloc_0_nonnull=yes \
  349. ac_cv_func_realloc_0_nonnull=yes \
  350. lt_cv_sys_lib_search_path_spec="" \
  351. $(BR2_AC_CV_C_BIGENDIAN) \
  352. $(BR2_GT_CV_FUNC_GNUGETTEXT_LIBC)
  353. ################################################################################
  354. ifeq ($(BR2_SYSTEM_ENABLE_NLS),y)
  355. NLS_OPTS = --enable-nls
  356. TARGET_NLS_DEPENDENCIES = host-gettext
  357. ifeq ($(BR2_PACKAGE_GETTEXT_PROVIDES_LIBINTL),y)
  358. TARGET_NLS_DEPENDENCIES += gettext
  359. TARGET_NLS_LIBS += -lintl
  360. endif
  361. else
  362. NLS_OPTS = --disable-nls
  363. endif
  364. # We need anything that is invalid. Traditionally, we'd have used 'false' (and
  365. # we did so in the past). However, that breaks libtool for packages that have
  366. # optional C++ support (e.g. gnutls), because libtool will *require* a *valid*
  367. # C++ preprocessor as long as CXX is not 'no'.
  368. # Now, whether we use 'no' or 'false' for CXX as the same side effect: it is an
  369. # invalid C++ compiler, and thus will cause detection of C++ to fail (which is
  370. # expected and what we want), while at the same time taming libtool into
  371. # silence.
  372. ifneq ($(BR2_INSTALL_LIBSTDCPP),y)
  373. TARGET_CONFIGURE_OPTS += CXX=no
  374. endif
  375. ifeq ($(BR2_STATIC_LIBS),y)
  376. SHARED_STATIC_LIBS_OPTS = --enable-static --disable-shared
  377. TARGET_CFLAGS += -static
  378. TARGET_CXXFLAGS += -static
  379. TARGET_FCFLAGS += -static
  380. TARGET_LDFLAGS += -static
  381. else ifeq ($(BR2_SHARED_LIBS),y)
  382. SHARED_STATIC_LIBS_OPTS = --disable-static --enable-shared
  383. else ifeq ($(BR2_SHARED_STATIC_LIBS),y)
  384. SHARED_STATIC_LIBS_OPTS = --enable-static --enable-shared
  385. endif
  386. # Used by our binutils patches.
  387. export BR_COMPILER_PARANOID_UNSAFE_PATH=enabled
  388. include package/pkg-download.mk
  389. include package/pkg-autotools.mk
  390. include package/pkg-cmake.mk
  391. include package/pkg-luarocks.mk
  392. include package/pkg-perl.mk
  393. include package/pkg-python.mk
  394. include package/pkg-virtual.mk
  395. include package/pkg-generic.mk
  396. include package/pkg-kconfig.mk
  397. include package/pkg-rebar.mk
  398. include package/pkg-kernel-module.mk
  399. include package/pkg-waf.mk
  400. include package/pkg-golang.mk
  401. include package/pkg-meson.mk
  402. include package/pkg-qmake.mk
  403. include package/pkg-cargo.mk