summaryrefslogtreecommitdiffstats
path: root/target/linux/image/Makefile
blob: 6509952fac7989aadc8abd30e292b79f14577df0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
include $(TOPDIR)/rules.mk

ifeq ($(BOARD),)
BOARD:=brcm
endif

KDIR:=$(BUILD_DIR)/linux-$(KERNEL)-$(BOARD)

ifeq ($(BR2_TARGET_ROOTFS_JFFS2),y)
include ./jffs2.mk
endif

ifeq ($(BR2_TARGET_ROOTFS_SQUASHFS_LZMA),y)
include ./squashfs.mk
endif

ifeq ($(BR2_TARGET_ROOTFS_TGZ),y)
include ./tgz.mk
endif

prepare:
compile:
install:
	$(MAKE) -C $(BOARD) prepare
	$(MAKE) -C $(BOARD) compile
rebuild: clean prepare compile install
clean: