X-Git-Url: http://git.ozo.com/?a=blobdiff_plain;f=toolchain%2FMakefile;h=4ffc46fb3462089e81cf9ae26e6c761d43398a28;hb=641e00a4546c0c9bb595f97a714c1011c2828f88;hp=8e26db562b70fe11debdb0c3a4afac1487fb28d1;hpb=06265758beb1721526360aa01176dd70d8a9e1d4;p=openwrt-10.03%2F.git diff --git a/toolchain/Makefile b/toolchain/Makefile index 8e26db562..4ffc46fb3 100644 --- a/toolchain/Makefile +++ b/toolchain/Makefile @@ -1,20 +1,31 @@ +# +# Copyright (C) 2006 OpenWrt.org +# +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# # Main makefile for the toolchain +# include $(TOPDIR)/rules.mk -TARGETS-y:=sed utils binutils gcc uClibc ipkg-utils libnotimpl +TARGETS-y:=sed kernel-headers sstrip binutils gcc uClibc ipkg-utils libnotimpl squashfs jffs2 lzma TARGETS-$(CONFIG_GDB) += gdb +TARGETS_DOWNLOAD:=$(patsubst %,%-download,$(TARGETS-y)) TARGETS_INSTALL:=$(patsubst %,%-install,$(TARGETS-y)) TARGETS_CLEAN:=$(patsubst %,%-clean,$(TARGETS-y)) all: install +download: $(TARGETS_DOWNLOAD) install: $(TARGETS_INSTALL) clean: $(TARGETS_CLEAN) -uClibc-prepare: kernel-headers-prepare sed-install utils-install +kernel-headers-prepare: sed-install +uClibc-prepare: kernel-headers-prepare sstrip-install binutils-prepare: uClibc-prepare gcc-prepare: binutils-install -uClibc-compile: gcc-prepare -gcc-compile: uClibc-install +uClibc-compile: gcc-compile +gcc-install: uClibc-install +squashfs-compile: lzma-install TOOLCHAIN_STAMP_DIR:=$(STAGING_DIR)/stampfiles @@ -30,6 +41,9 @@ $(STAGING_DIR): $(TOOL_BUILD_DIR): @mkdir -p $@ +%-download: FORCE + $(MAKE) -C $(patsubst %-download,%,$@) download + %-prepare: $(TOOLCHAIN_STAMP_DIR) $(STAGING_DIR) $(TOOL_BUILD_DIR) FORCE @[ -f $(TOOLCHAIN_STAMP_DIR)/.toolchain_$@ ] || { \ $(MAKE) -C $(patsubst %-prepare,%,$@) prepare; \