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)
|
|
|
|
|
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
|
2007-02-26 02:20:34 +08:00
|
|
|
install: linux-install image_install
|
2007-01-15 07:37:40 +08:00
|
|
|
|
|
|
|
ifeq ($(CONFIG_SDK),y)
|
|
|
|
install: sdk_install
|
|
|
|
endif
|
|
|
|
ifeq ($(CONFIG_IB),y)
|
|
|
|
install: imagebuilder_install
|
|
|
|
endif
|
|
|
|
|
2007-01-11 05:52:28 +08:00
|
|
|
clean: linux-clean sdk-clean imagebuilder-clean 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
|
2007-07-16 08:42:19 +08:00
|
|
|
[ \! -f $(IMAGE_DIR)/Makefile ] || $(MAKE) -C $(IMAGE_DIR) prereq
|
2006-11-19 05:12:18 +08:00
|
|
|
|
2007-01-11 05:52:28 +08:00
|
|
|
sdk_install: FORCE
|
|
|
|
$(MAKE) -C sdk install
|
|
|
|
|
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
|
|
|
|
2007-01-11 05:52:28 +08:00
|
|
|
imagebuilder_install: image_install
|
|
|
|
$(MAKE) -C imagebuilder install
|
|
|
|
|
2007-06-04 19:14:08 +08:00
|
|
|
%-prereq %-prepare %-download %-clean %-compile %-install %-refresh %-update: FORCE
|
2007-04-19 01:35:46 +08:00
|
|
|
$(MAKE) -C $* $(patsubst $*-%,%,$@)
|