X-Git-Url: http://git.ozo.com/?a=blobdiff_plain;f=target%2Flinux%2FMakefile;h=c15d81999f74aa1b451e0d05d998f6dc50d87cb9;hb=d95a7917c4468d89ff2c0bb623b92626a29adb6e;hp=c08bb4c89c053b15bf2039d09ccb3ede383c19f1;hpb=b739c888dfd9095551cbf13798ed42fe1ec2bfc6;p=openwrt-10.03%2F.git diff --git a/target/linux/Makefile b/target/linux/Makefile index c08bb4c89..c15d81999 100644 --- a/target/linux/Makefile +++ b/target/linux/Makefile @@ -1,29 +1,14 @@ +# +# Copyright (C) 2006 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) - -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 +download: + $(MAKE) -C $(BOARD)-$(KERNEL) download prepare: $(MAKE) -C $(BOARD)-$(KERNEL) prepare @@ -33,10 +18,9 @@ compile: install: $(MAKE) -C $(BOARD)-$(KERNEL) install - $(MAKE) -C image/$(BOARD) install +menuconfig: + $(MAKE) -C $(BOARD)-$(KERNEL) menuconfig + clean: $(MAKE) -C $(BOARD)-$(KERNEL) clean - -image/%: - $(MAKE) -C image $(patsubst image/%,%,$@)