2006-06-27 03:44:04 +03:00
|
|
|
#
|
2007-07-28 16:29:03 +03:00
|
|
|
# Copyright (C) 2007 OpenWrt.org
|
2006-06-27 03:44:04 +03:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
2005-03-06 05:34:52 +02:00
|
|
|
# Main makefile for the toolchain
|
2006-06-27 03:44:04 +03:00
|
|
|
#
|
2007-07-30 18:00:27 +03:00
|
|
|
curdir:=toolchain
|
2006-09-27 17:06:46 +03:00
|
|
|
|
2007-07-28 16:29:03 +03:00
|
|
|
# subdirectories to descend into
|
2007-07-28 16:44:04 +03:00
|
|
|
$(curdir)/builddirs := kernel-headers $(if $(CONFIG_GDB),gdb) $(if $(CONFIG_NATIVE_TOOLCHAIN),,binutils gcc uClibc)
|
2007-07-31 00:57:14 +03:00
|
|
|
$(curdir)/builddirs-compile:=. $(filter-out kernel-headers,$($(curdir)/builddirs))
|
|
|
|
$(curdir)/builddirs-install:=$($(curdir)/builddirs-compile)
|
2005-03-06 05:34:52 +02:00
|
|
|
|
2007-07-28 16:29:03 +03:00
|
|
|
# builddir dependencies
|
2007-07-28 16:44:04 +03:00
|
|
|
$(curdir)/uClibc/prepare:=$(curdir)/kernel-headers/prepare
|
2006-08-10 22:25:26 +03:00
|
|
|
ifeq ($(CONFIG_NATIVE_TOOLCHAIN),)
|
2007-07-28 16:44:04 +03:00
|
|
|
$(curdir)/binutils/prepare:=$(curdir)/uClibc/prepare
|
|
|
|
$(curdir)/gcc/prepare:=$(curdir)/binutils/install
|
|
|
|
$(curdir)/uClibc/compile:=$(curdir)/gcc/compile
|
2006-08-10 22:25:26 +03:00
|
|
|
endif
|
2007-07-28 16:44:04 +03:00
|
|
|
$(curdir)/gcc/install:=$(curdir)/uClibc/install
|
2005-03-06 05:34:52 +02:00
|
|
|
|
2007-07-28 16:29:03 +03:00
|
|
|
# prerequisites for the individual targets
|
2007-07-31 00:14:08 +03:00
|
|
|
$(curdir)/ := .config prereq
|
2007-07-28 16:44:04 +03:00
|
|
|
$(curdir)//prepare = $(STAGING_DIR)/include-host/.done
|
|
|
|
$(curdir)//compile = $(1)/prepare
|
|
|
|
$(curdir)//install = $(1)/compile
|
2005-03-06 05:34:52 +02:00
|
|
|
|
2007-07-30 21:22:01 +03:00
|
|
|
$(eval $(call stampfile,$(curdir),toolchain,install))
|
2007-07-28 16:44:04 +03:00
|
|
|
$(eval $(call subdir,$(curdir)))
|
2007-04-18 20:35:46 +03:00
|
|
|
|