openwrtv4/openwrt/target/linux/image/Makefile
Nicolas Thill 6f4cb7338f add preliminary support for soekris boards
SVN-Revision: 1564
2005-07-25 15:40:23 +00:00

28 lines
434 B
Makefile

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: