add preliminary support for soekris boards
[openwrt.git] / target / linux / image / Makefile
1 include $(TOPDIR)/rules.mk
2
3 ifeq ($(BOARD),)
4 BOARD:=brcm
5 endif
6
7 KDIR:=$(BUILD_DIR)/linux-$(KERNEL)-$(BOARD)
8
9 ifeq ($(BR2_TARGET_ROOTFS_JFFS2),y)
10 include ./jffs2.mk
11 endif
12
13 ifeq ($(BR2_TARGET_ROOTFS_SQUASHFS_LZMA),y)
14 include ./squashfs.mk
15 endif
16
17 ifeq ($(BR2_TARGET_ROOTFS_TGZ),y)
18 include ./tgz.mk
19 endif
20
21 prepare:
22 compile:
23 install:
24 $(MAKE) -C $(BOARD) prepare
25 $(MAKE) -C $(BOARD) compile
26 rebuild: clean prepare compile install
27 clean:
28
This page took 0.061133 seconds and 5 git commands to generate.