2 # Copyright (C) 2006 OpenWrt.org
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
7 include $(TOPDIR
)/rules.mk
8 include $(INCLUDE_DIR
)/target.mk
15 TARGETS-y
:= linux utils
16 TARGETS-
$(CONFIG_SDK
) += sdk
18 linux-compile
: utils-install
19 linux-install
: $(BIN_DIR
)
20 sdk-compile
: linux-install
21 image_install
: linux-install
23 download
: $(patsubst %,%-download
,$(TARGETS-y
))
24 prepare
: linux-prepare
25 compile
: linux-compile image_compile
26 install: image_clean
$(patsubst %,%-install,$(TARGETS-y
)) image_install
27 clean: $(patsubst %,%-clean,$(TARGETS-y
)) image_clean
30 $(MAKE
) -C image
/$(BOARD
) clean
31 rm -f
$(BIN_DIR
)/openwrt-
*
34 $(MAKE
) -C image
/$(BOARD
) compile
36 image_install
: image_compile
37 $(MAKE
) -C image
/$(BOARD
) install
40 $(MAKE
) -C
$(patsubst %-clean,%,$@
) clean
42 $(MAKE
) -C
$(patsubst %-download
,%,$@
) download
44 $(MAKE
) -C
$(patsubst %-prepare
,%,$@
) prepare
46 $(MAKE
) -C
$(patsubst %-compile
,%,$@
) compile
48 $(MAKE
) -C
$(patsubst %-install,%,$@
) install