X-Git-Url: http://git.ozo.com/?a=blobdiff_plain;f=target%2Flinux%2FMakefile;h=828825011128de30973a466e5a46f52833a58be2;hb=541ff27cfb26939cf1b98b73fa5aeea0d8432082;hp=e1a314d1d8380ed7ba427d8e1cb41adc9e7de5bf;hpb=859e8f7f7d8bfbefd610d338d16498190cd51e15;p=openwrt-10.03%2F.git diff --git a/target/linux/Makefile b/target/linux/Makefile index e1a314d1d..828825011 100644 --- a/target/linux/Makefile +++ b/target/linux/Makefile @@ -1,47 +1,12 @@ +# +# Copyright (C) 2006-2007 OpenWrt.org +# +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# include $(TOPDIR)/rules.mk +include $(INCLUDE_DIR)/target.mk -PKG_OS:=$(shell uname -s) -PKG_CPU:=$(shell uname -m) +prereq clean download prepare compile install menuconfig oldconfig update refresh: FORCE + TARGET_BUILD=1 $(MAKE) -C $(BOARD) $@ -define kernel_template -ifeq ($(CONFIG_LINUX_$(3)),y) -KERNEL:=$(1) -BOARD:=$(2) -endif -endef - -$(eval $(call kernel_template,2.4,brcm,2_4_BRCM)) -$(eval $(call kernel_template,2.4,ar7,2_4_AR7)) -$(eval $(call kernel_template,2.4,x86,2_4_X86)) -$(eval $(call kernel_template,2.6,brcm,2_6_BRCM)) -$(eval $(call kernel_template,2.6,rb532,2_6_RB532)) -$(eval $(call kernel_template,2.6,x86,2_6_X86)) -$(eval $(call kernel_template,2.4,ar531x,2_4_AR531X)) -$(eval $(call kernel_template,2.6,aruba,2_6_ARUBA)) -$(eval $(call kernel_template,2.6,au1000,2_6_AU1000)) -$(eval $(call kernel_template,2.6,xscale,2_6_XSCALE)) -$(eval $(call kernel_template,2.6,sibyte,2_6_SIBYTE)) - -export BOARD -export KERNEL - -source: - $(MAKE) -C $(BOARD)-$(KERNEL) source - $(MAKE) -C image/$(BOARD) source - -prepare: - rm -f $(TOPDIR)/.kernel.mk - $(MAKE) -C $(BOARD)-$(KERNEL) prepare - -compile: - $(MAKE) -C $(BOARD)-$(KERNEL) compile - -install: - $(MAKE) -C $(BOARD)-$(KERNEL) install - $(MAKE) -C image/$(BOARD) install - -clean: - $(MAKE) -C $(BOARD)-$(KERNEL) clean - -image/%: - $(MAKE) -C image $(patsubst image/%,%,$@)