Openwrt/openwrt/target/linux/image/Makefile
Felix Fietkau b5e7f55f97 add updates from whiterussian to head
SVN-Revision: 1626
2005-08-13 12:38:47 +00:00

25 lines
398 B
Makefile

include $(TOPDIR)/rules.mk
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: