mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-01 21:20:37 +02:00
db196bcbf9
Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18419 3c298f89-4303-0410-b956-a3cf2f4a3e73
22 lines
734 B
Makefile
22 lines
734 B
Makefile
#
|
|
# Copyright (C) 2007 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
curdir:=target
|
|
|
|
$(curdir)/builddirs:=linux sdk imagebuilder toolchain
|
|
$(curdir)/builddirs-default:=linux
|
|
$(curdir)/builddirs-install:=linux $(if $(CONFIG_SDK),sdk) $(if $(CONFIG_IB),imagebuilder) $(if $(CONFIG_MAKE_TOOLCHAIN),toolchain)
|
|
|
|
$(curdir)/imagebuilder/prepare:=$(curdir)/linux/install
|
|
|
|
$(eval $(call stampfile,$(curdir),target,prereq,.config))
|
|
$(eval $(call stampfile,$(curdir),target,compile,$(TMP_DIR)/.build))
|
|
$(eval $(call stampfile,$(curdir),target,install,$(TMP_DIR)/.build))
|
|
|
|
$($(curdir)/stamp-install): $($(curdir)/stamp-compile)
|
|
|
|
$(eval $(call subdir,$(curdir)))
|