diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2010-01-16 10:11:12 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2010-01-16 10:11:12 +0100 |
commit | 40e385e8489f1319219179f24b44c41d672f3719 (patch) | |
tree | a52490310d259b4b88ba404de4156d20fb266a07 /Makefile | |
parent | b446a21956b1d6369d6803237a84da488e1b9ce6 (diff) |
add make dep shortcut
now you can use make dep menu menuconfig, if you change any
PKG_DEPENDS or PKG_BUILDDEPS
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -62,6 +62,7 @@ pkg-help: dev-help: @echo 'Regenerate menu information via "make menu"' + @echo 'Regenerate dependency information via "make dep"' @echo @echo 'Fast way of updating package patches:' @echo ' run "make package=<pkgname> clean" to start with a good base' @@ -146,6 +147,9 @@ bulk: .prereq_done menu: .prereq_done @${GMAKE_INV} menu +dep: .prereq_done + @${GMAKE_INV} dep + world: .prereq_done @${GMAKE_INV} world |