b6a6c569145af2a37e3b4e20cba186292a3852c7
[openwrt.git] / target / linux / image / Makefile
1 include $(TOPDIR)/rules.mk
2
3 KDIR:=$(BUILD_DIR)/linux-$(KERNEL)-$(BOARD)
4
5 ifeq ($(BR2_TARGET_ROOTFS_JFFS2),y)
6 include ./jffs2.mk
7 endif
8
9 ifeq ($(BR2_TARGET_ROOTFS_SQUASHFS_LZMA),y)
10 include ./squashfs.mk
11 endif
12
13 ifeq ($(BR2_TARGET_ROOTFS_TGZ),y)
14 include ./tgz.mk
15 endif
16
17 prepare:
18 compile:
19 install:
20         $(MAKE) -C $(BOARD) prepare
21         $(MAKE) -C $(BOARD) compile
22 rebuild: clean prepare compile install
23 clean:
24