diff options
author | Felix Fietkau <nbd@openwrt.org> | 2005-06-11 21:18:26 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2005-06-11 21:18:26 +0000 |
commit | f48b8046f0949f5d3efe1e79793e94821228e752 (patch) | |
tree | a33c0c429e2d0a3b735664c26e33f1b25affd6a0 /target/linux/image/Makefile | |
parent | 505803326fb1d031d39223630af001cb1cc35875 (diff) | |
download | upstream-f48b8046f0949f5d3efe1e79793e94821228e752.tar.gz upstream-f48b8046f0949f5d3efe1e79793e94821228e752.tar.bz2 upstream-f48b8046f0949f5d3efe1e79793e94821228e752.zip |
cleanup in target/
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1205 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/image/Makefile')
-rw-r--r-- | target/linux/image/Makefile | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/target/linux/image/Makefile b/target/linux/image/Makefile new file mode 100644 index 0000000000..6b7c78774c --- /dev/null +++ b/target/linux/image/Makefile @@ -0,0 +1,24 @@ +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: + $(MAKE) -C $(BOARD) prepare +compile: + $(MAKE) -C $(BOARD) compile +install: +rebuild: clean prepare compile install +clean: + |