2006-06-27 03:35:46 +03: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 04:53:40 +02:00
|
|
|
include $(TOPDIR)/rules.mk
|
2006-06-21 17:02:29 +03:00
|
|
|
include $(INCLUDE_DIR)/target.mk
|
2005-03-20 04:53:40 +02:00
|
|
|
|
|
|
|
all: install
|
|
|
|
|
|
|
|
$(BIN_DIR):
|
|
|
|
mkdir -p $(BIN_DIR)
|
|
|
|
|
2005-07-18 01:52:59 +03:00
|
|
|
linux-install: $(BIN_DIR)
|
2006-06-21 17:02:29 +03:00
|
|
|
image_install: linux-install
|
2005-06-12 00:18:26 +03:00
|
|
|
|
2006-11-28 22:14:41 +02:00
|
|
|
IMAGE_DIR:=linux/$(BOARD)-$(KERNEL)/image
|
|
|
|
|
2006-07-20 20:28:05 +03:00
|
|
|
download: $(patsubst %,%-download,$(TARGETS-y))
|
2006-01-14 00:34:55 +02:00
|
|
|
prepare: linux-prepare
|
2006-06-21 17:02:29 +03:00
|
|
|
compile: linux-compile image_compile
|
2007-02-25 20:20:34 +02:00
|
|
|
install: linux-install image_install
|
2007-01-15 01:37:40 +02:00
|
|
|
|
|
|
|
ifeq ($(CONFIG_SDK),y)
|
|
|
|
install: sdk_install
|
|
|
|
endif
|
|
|
|
ifeq ($(CONFIG_IB),y)
|
|
|
|
install: imagebuilder_install
|
|
|
|
endif
|
|
|
|
|
2007-01-10 23:52:28 +02:00
|
|
|
clean: linux-clean sdk-clean imagebuilder-clean image_clean
|
2005-06-12 00:18:26 +03:00
|
|
|
|
2006-11-18 23:12:18 +02:00
|
|
|
prereq: FORCE
|
|
|
|
$(MAKE) -C linux/$(BOARD)-$(KERNEL) prereq
|
2006-11-28 22:14:41 +02:00
|
|
|
$(MAKE) -C $(IMAGE_DIR) prereq
|
2006-11-18 23:12:18 +02:00
|
|
|
|
2007-01-10 23:52:28 +02:00
|
|
|
sdk_install: FORCE
|
|
|
|
$(MAKE) -C sdk install
|
|
|
|
|
2006-06-01 02:29:05 +03:00
|
|
|
image_clean: FORCE
|
2006-11-28 22:14:41 +02:00
|
|
|
$(MAKE) -C $(IMAGE_DIR) clean
|
2005-06-12 00:18:26 +03:00
|
|
|
rm -f $(BIN_DIR)/openwrt-*
|
2006-06-21 17:02:29 +03:00
|
|
|
|
|
|
|
image_compile: FORCE
|
2006-11-28 22:14:41 +02:00
|
|
|
$(MAKE) -C $(IMAGE_DIR) compile
|
2006-06-21 17:02:29 +03:00
|
|
|
|
|
|
|
image_install: image_compile
|
2006-11-28 22:14:41 +02:00
|
|
|
$(MAKE) -C $(IMAGE_DIR) install
|
2005-06-12 00:18:26 +03:00
|
|
|
|
2007-01-10 23:52:28 +02:00
|
|
|
imagebuilder_install: image_install
|
|
|
|
$(MAKE) -C imagebuilder install
|
|
|
|
|
2007-04-18 20:35:46 +03:00
|
|
|
%-prereq %-prepare %-download %-clean %-compile %-install: FORCE
|
|
|
|
$(MAKE) -C $* $(patsubst $*-%,%,$@)
|