projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
make kernel_menuconfig work without target toolchain
[openwrt.git]
/
Makefile
diff --git
a/Makefile
b/Makefile
index
daadbea
..
fea8ed3
100644
(file)
--- a/
Makefile
+++ b/
Makefile
@@
-82,10
+82,10
@@
tmpinfo-clean: FORCE
@-rm -rf tmp/.pkginfo tmp/.targetinfo
tmp/.config.in: tmp/.pkginfo
@-rm -rf tmp/.pkginfo tmp/.targetinfo
tmp/.config.in: tmp/.pkginfo
- @./scripts/
gen_package_config.pl
< $< > $@ || rm -f $@
+ @./scripts/
metadata.pl package_config
< $< > $@ || rm -f $@
tmp/.config-target.in: tmp/.targetinfo
tmp/.config-target.in: tmp/.targetinfo
- @./scripts/
gen_target_config.pl
< $< > $@ || rm -f $@
+ @./scripts/
metadata.pl target_config
< $< > $@ || rm -f $@
.config: ./scripts/config/conf tmp/.config.in tmp/.config-target.in
@[ -f .config ] || $(NO_TRACE_MAKE) menuconfig
.config: ./scripts/config/conf tmp/.config.in tmp/.config-target.in
@[ -f .config ] || $(NO_TRACE_MAKE) menuconfig
@@
-113,6
+113,10
@@
oldconfig: scripts/config/conf tmp/.config.in tmp/.config-target.in FORCE
menuconfig: scripts/config/mconf tmp/.config.in tmp/.config-target.in FORCE
$< Config.in
menuconfig: scripts/config/mconf tmp/.config.in tmp/.config-target.in FORCE
$< Config.in
+kernel_menuconfig: .config FORCE
+ -$(MAKE) target/linux-prepare
+ $(NO_TRACE_MAKE) -C target/linux menuconfig
+
package/%: tmp/.pkginfo tmp/.targetinfo FORCE
$(MAKE) -C package $(patsubst package/%,%,$@)
package/%: tmp/.pkginfo tmp/.targetinfo FORCE
$(MAKE) -C package $(patsubst package/%,%,$@)
@@
-181,8
+185,11
@@
distclean: dirclean config-clean
help:
cat README
help:
cat README
-symlinks:
- scripts/feeds.sh https://svn.openwrt.org/openwrt/packages
+doc:
+ $(MAKE) -C docs/ openwrt.pdf
+
+docclean:
+ $(MAKE) -C docs/ clean
.SILENT: clean dirclean distclean config-clean download world
FORCE: ;
.SILENT: clean dirclean distclean config-clean download world
FORCE: ;
This page took
0.024658 seconds
and
4
git commands to generate.