summaryrefslogtreecommitdiff
path: root/openwrt/Makefile
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2006-05-31 12:33:06 +0000
committerFelix Fietkau <nbd@openwrt.org>2006-05-31 12:33:06 +0000
commit445b861749781b117ebf7e0f479bcdf88bd9cb98 (patch)
treeaadea6228300fe2a58aa97ab10498237e3523513 /openwrt/Makefile
parent87eac4e652d2d1a6ceb594908e56563fab352175 (diff)
downloadmtk-20170518-445b861749781b117ebf7e0f479bcdf88bd9cb98.zip
mtk-20170518-445b861749781b117ebf7e0f479bcdf88bd9cb98.tar.gz
mtk-20170518-445b861749781b117ebf7e0f479bcdf88bd9cb98.tar.bz2
allow building of kernel-specific stuff in package/ instead of target/linux/package/ and merge target/linux/package/base-files into package/base-files
SVN-Revision: 3855
Diffstat (limited to 'openwrt/Makefile')
-rw-r--r--openwrt/Makefile9
1 files changed, 8 insertions, 1 deletions
diff --git a/openwrt/Makefile b/openwrt/Makefile
index f93b008..b1bcf91 100644
--- a/openwrt/Makefile
+++ b/openwrt/Makefile
@@ -38,7 +38,7 @@ endif
endif
export OPENWRTVERSION
-all:
+all: world
.pkginfo: FORCE
ifneq ($(shell ./scripts/timestamp.pl -p .pkginfo package Makefile),.pkginfo)
@@ -79,5 +79,12 @@ target/%: .pkginfo
toolchain/%:
$(MAKE) -C toolchain $(patsubst toolchain/%,%,$@)
+world:
+ $(MAKE) toolchain/install
+ $(MAKE) target/compile
+ $(MAKE) package/compile
+ $(MAKE) package/install
+ $(MAKE) target/install
+
.PHONY: FORCE
FORCE: