add some more verbosity stuff
[openwrt/svn-archive/archive.git] / openwrt / 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 @$(PKG_TRACE) Preparing...
19 $(MAKE) prepare-targets $(MAKE_TRACE)
20 compile:
21 @$(PKG_TRACE) Compiling...
22 $(MAKE) compile-targets $(MAKE_TRACE)
23 install:
24 @$(PKG_TRACE) Installing...
25 $(MAKE) install-targets $(MAKE_TRACE)
26
27 .PHONY: prepare compile install
28
29 $(BOARD)-compile:
30 @$(TRACE) target/linux/image/$(BOARD)/prepare
31 $(MAKE) -C $(BOARD) prepare
32 @$(TRACE) target/linux/image/$(BOARD)/compile
33 $(MAKE) -C $(BOARD) compile
34
35 install-ib:
36 @$(TRACE) target/linux/image/$(BOARD)/install-ib
37 -$(MAKE) -C $(BOARD) IB_DIR="$(IB_DIR)" install-ib
38 mkdir -p $(IB_DIR)/build_$(ARCH)/linux-$(KERNEL)-$(BOARD)
39 cp $(BUILD_DIR)/linux-$(KERNEL)-$(BOARD)/kernel[-_]*.ipk $(IB_DIR)/build_$(ARCH)/linux-$(KERNEL)-$(BOARD)/
40
41 install-prepare:
42 find $(KDIR)/root -type f -not -perm +0100 | xargs chmod 0644
43 find $(KDIR)/root -type f -perm +0100 | xargs chmod 0755
44 find $(KDIR)/root -type d | xargs chmod 0755
45 chmod 0777 $(KDIR)/root/tmp
46
47 rebuild: clean prepare compile install
48 clean:
49 @$(PKG_TRACE) Cleaning...
50 $(MAKE) clean-targets $(MAKE_TRACE)
51