blob: 1875032602c1d26d9259f4d303865f3bd18226e5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
BR2_PACKAGE_LINUX_FORMAT:=$(strip $(subst ",,$(BR2_PACKAGE_LINUX_FORMAT)))
#"))
BR2_PACKAGE_LINUX_KCONFIG:=$(strip $(subst ",,$(BR2_PACKAGE_LINUX_KCONFIG)))
#"))
# make sure to put everything that is board-specific before the tarroot targets
include target/generic/Makefile.in
# this eventually adds the kernel target to TARGETS:
include target/device/Makefile.in
include target/x86/Makefile.in
include target/powerpc/Makefile.in
ifeq ($(strip $(BR2_TARGET_UBOOT)),y)
include target/u-boot/Makefile.in
endif
# and finally build the filesystems/tarballs
include target/*/*.mk
# kernel rules
# We already did add the kernel target to TARGETS and now just pull in the rules
# to actually build this target.
ifeq ($(strip $(subst ",,$(BR2_KERNEL_LINUX))),y)
#"))
include target/linux/Makefile.in
endif
ifeq ($(strip $(subst ",,$(BR2_KERNEL_LINUX_ADVANCED))),y)
#"))
include target/linux/Makefile.in.advanced
endif
include target/device/Makefile.in.linux
include target/hurd/Makefile.in
|