fix tgz building
[openwrt.git] / openwrt / target / linux / image / Makefile
index 6b7c787..b6a6c56 100644 (file)
@@ -1,9 +1,5 @@
 include $(TOPDIR)/rules.mk
 
-ifeq ($(BOARD),)
-BOARD:=brcm
-endif
-
 KDIR:=$(BUILD_DIR)/linux-$(KERNEL)-$(BOARD)
 
 ifeq ($(BR2_TARGET_ROOTFS_JFFS2),y)
@@ -14,11 +10,15 @@ ifeq ($(BR2_TARGET_ROOTFS_SQUASHFS_LZMA),y)
 include ./squashfs.mk
 endif
 
+ifeq ($(BR2_TARGET_ROOTFS_TGZ),y)
+include ./tgz.mk
+endif
+
 prepare:
-       $(MAKE) -C $(BOARD) prepare
 compile:
-       $(MAKE) -C $(BOARD) compile
 install:
+       $(MAKE) -C $(BOARD) prepare
+       $(MAKE) -C $(BOARD) compile
 rebuild: clean prepare compile install
 clean:
 
This page took 0.021766 seconds and 4 git commands to generate.