openwrtv3/openwrt/target/linux/image/Makefile

25 lines
376 B
Makefile
Raw Normal View History

2005-06-11 21:18:26 +00:00
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
prepare:
compile:
install:
$(MAKE) -C $(BOARD) prepare
$(MAKE) -C $(BOARD) compile
2005-06-11 21:18:26 +00:00
rebuild: clean prepare compile install
clean: