2006-06-27 08:35:46 +08:00
|
|
|
#
|
|
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
2005-03-20 10:53:40 +08:00
|
|
|
include $(TOPDIR)/rules.mk
|
2006-06-21 22:02:29 +08:00
|
|
|
include $(INCLUDE_DIR)/target.mk
|
2005-03-20 10:53:40 +08:00
|
|
|
|
|
|
|
all: install
|
|
|
|
|
|
|
|
$(BIN_DIR):
|
|
|
|
mkdir -p $(BIN_DIR)
|
|
|
|
|
2006-12-07 07:41:38 +08:00
|
|
|
TARGETS-y := linux
|
2006-06-21 11:17:13 +08:00
|
|
|
TARGETS-$(CONFIG_SDK) += sdk
|
2006-06-21 07:56:49 +08:00
|
|
|
|
2005-07-18 06:52:59 +08:00
|
|
|
linux-install: $(BIN_DIR)
|
2006-06-21 22:02:29 +08:00
|
|
|
image_install: linux-install
|
2005-06-12 05:18:26 +08:00
|
|
|
|
2006-11-29 04:14:41 +08:00
|
|
|
IMAGE_DIR:=linux/$(BOARD)-$(KERNEL)/image
|
|
|
|
|
|
|
|
|
2006-07-21 01:28:05 +08:00
|
|
|
download: $(patsubst %,%-download,$(TARGETS-y))
|
2006-01-14 06:34:55 +08:00
|
|
|
prepare: linux-prepare
|
2006-06-21 22:02:29 +08:00
|
|
|
compile: linux-compile image_compile
|
|
|
|
install: image_clean $(patsubst %,%-install,$(TARGETS-y)) image_install
|
2006-06-21 11:17:13 +08:00
|
|
|
clean: $(patsubst %,%-clean,$(TARGETS-y)) image_clean
|
2005-06-12 05:18:26 +08:00
|
|
|
|
2006-11-19 05:12:18 +08:00
|
|
|
prereq: FORCE
|
|
|
|
$(MAKE) -C linux/$(BOARD)-$(KERNEL) prereq
|
2006-11-29 04:14:41 +08:00
|
|
|
$(MAKE) -C $(IMAGE_DIR) prereq
|
2006-11-19 05:12:18 +08:00
|
|
|
|
2006-06-01 07:29:05 +08:00
|
|
|
image_clean: FORCE
|
2006-11-29 04:14:41 +08:00
|
|
|
$(MAKE) -C $(IMAGE_DIR) clean
|
2005-06-12 05:18:26 +08:00
|
|
|
rm -f $(BIN_DIR)/openwrt-*
|
2006-06-21 22:02:29 +08:00
|
|
|
|
|
|
|
image_compile: FORCE
|
2006-11-29 04:14:41 +08:00
|
|
|
$(MAKE) -C $(IMAGE_DIR) compile
|
2006-06-21 22:02:29 +08:00
|
|
|
|
|
|
|
image_install: image_compile
|
2006-11-29 04:14:41 +08:00
|
|
|
$(MAKE) -C $(IMAGE_DIR) install
|
2005-06-12 05:18:26 +08:00
|
|
|
|
2006-06-01 07:29:05 +08:00
|
|
|
%-clean: FORCE
|
2005-03-20 10:53:40 +08:00
|
|
|
$(MAKE) -C $(patsubst %-clean,%,$@) clean
|
2006-07-21 01:28:05 +08:00
|
|
|
%-download: FORCE
|
|
|
|
$(MAKE) -C $(patsubst %-download,%,$@) download
|
2006-06-01 07:29:05 +08:00
|
|
|
%-prepare: FORCE
|
2005-03-20 10:53:40 +08:00
|
|
|
$(MAKE) -C $(patsubst %-prepare,%,$@) prepare
|
|
|
|
%-compile: %-prepare
|
|
|
|
$(MAKE) -C $(patsubst %-compile,%,$@) compile
|
|
|
|
%-install: %-compile
|
|
|
|
$(MAKE) -C $(patsubst %-install,%,$@) install
|
2006-02-25 04:59:09 +08:00
|
|
|
|