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