X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/6d6826fc9d75971716fd11198eb125f5596061d3..94b990965344980dbf50951b824a1c59d08952e1:/Makefile diff --git a/Makefile b/Makefile index dae32830c..faeecaa48 100644 --- a/Makefile +++ b/Makefile @@ -86,9 +86,16 @@ target/%: .pkginfo FORCE toolchain/%: FORCE $(MAKE) -C toolchain $(patsubst toolchain/%,%,$@) -world: ./scripts/config/conf FORCE - touch .config +.config: ./scripts/config/conf FORCE + @[ -f .config ] || $(MAKE) menuconfig $< -D .config Config.in >/dev/null 2>/dev/null + +download: .config FORCE + $(MAKE) toolchain/download + $(MAKE) package/download + $(MAKE) target/download + +world: .config FORCE $(MAKE) toolchain/install $(MAKE) target/compile $(MAKE) package/compile @@ -98,10 +105,10 @@ world: ./scripts/config/conf FORCE clean: FORCE rm -rf build_* bin -dirclean: clean FORCE +dirclean: clean rm -rf staging_dir_* toolchain_build_* -distclean: dirclean FORCE +distclean: dirclean config-clean rm -rf dl .*config* .pkg* .PHONY: FORCE