2 # Copyright (C) 2007 OpenWrt.org
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
7 # Main makefile for the toolchain
11 # subdirectories to descend into
12 $(curdir
)/builddirs
:= kernel-headers
$(if
$(CONFIG_GDB
),gdb
) $(if
$(CONFIG_NATIVE_TOOLCHAIN
),,binutils gcc uClibc
)
14 # builddir dependencies
15 $(curdir
)/uClibc
/prepare
:=$(curdir
)/kernel-headers
/prepare
16 ifeq ($(CONFIG_NATIVE_TOOLCHAIN
),)
17 $(curdir
)/binutils
/prepare
:=$(curdir
)/uClibc
/prepare
18 $(curdir
)/gcc
/prepare
:=$(curdir
)/binutils
/install
19 $(curdir
)/uClibc
/compile
:=$(curdir
)/gcc
/compile
21 $(curdir
)/gcc
/install:=$(curdir
)/uClibc
/install
23 # prerequisites for the individual targets
24 $(curdir
)/ := .config
$(tools
/stamp
)
25 $(curdir
)//prepare
= $(STAGING_DIR
)/include-host
/.done
26 $(curdir
)//compile
= $(1)/prepare
27 $(curdir
)//install = $(1)/compile
29 $(eval
$(call stampfile
,$(curdir
),toolchain
))
30 $(eval
$(call subdir
,$(curdir
)))
This page took 0.039485 seconds and 5 git commands to generate.