mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-05 07:43:09 +02:00
7f968bd4fa
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1626 3c298f89-4303-0410-b956-a3cf2f4a3e73
25 lines
398 B
Makefile
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:
|
|
|