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)
|
|
|
|
|
2006-06-21 06:17:13 +03:00
|
|
|
TARGETS-y := linux utils
|
|
|
|
TARGETS-$(CONFIG_SDK) += sdk
|
2006-06-21 02:56:49 +03:00
|
|
|
|
2006-06-21 05:16:37 +03:00
|
|
|
linux-compile: utils-install
|
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-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
|
|
|
|
install: image_clean $(patsubst %,%-install,$(TARGETS-y)) image_install
|
2006-06-21 06:17:13 +03:00
|
|
|
clean: $(patsubst %,%-clean,$(TARGETS-y)) image_clean
|
2005-06-12 00:18:26 +03:00
|
|
|
|
2006-06-01 02:29:05 +03:00
|
|
|
image_clean: FORCE
|
2006-06-21 17:02:29 +03:00
|
|
|
$(MAKE) -C image/$(BOARD) 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
|
|
|
|
$(MAKE) -C image/$(BOARD) compile
|
|
|
|
|
|
|
|
image_install: image_compile
|
|
|
|
$(MAKE) -C image/$(BOARD) install
|
2005-06-12 00:18:26 +03:00
|
|
|
|
2006-06-01 02:29:05 +03:00
|
|
|
%-clean: FORCE
|
2005-03-20 04:53:40 +02:00
|
|
|
$(MAKE) -C $(patsubst %-clean,%,$@) clean
|
2006-07-20 20:28:05 +03:00
|
|
|
%-download: FORCE
|
|
|
|
$(MAKE) -C $(patsubst %-download,%,$@) download
|
2006-06-01 02:29:05 +03:00
|
|
|
%-prepare: FORCE
|
2005-03-20 04:53:40 +02:00
|
|
|
$(MAKE) -C $(patsubst %-prepare,%,$@) prepare
|
|
|
|
%-compile: %-prepare
|
|
|
|
$(MAKE) -C $(patsubst %-compile,%,$@) compile
|
|
|
|
%-install: %-compile
|
|
|
|
$(MAKE) -C $(patsubst %-install,%,$@) install
|
2006-02-24 22:59:09 +02:00
|
|
|
|