|
diff --git a/Makefile b/Makefile index fd7da6d..b1e76cb 100644 --- a/ Makefile+++ b/ Makefile |
|
@@ -66,23 +66,20 @@ $(TOPDIR)/.config: $(TOPDIR)/.depends.cfgs $(configs) |
66 | # at the time that they run. we must ensure that .depends.cfgs |
66 | # at the time that they run. we must ensure that .depends.cfgs |
67 | # is built and included by the time we reach this point. |
67 | # is built and included by the time we reach this point. |
68 | |
68 | |
69 | xconfig : |
69 | xconfig : |
70 | $(call descend,scripts/kconfig,qconf) |
70 | $(call descend,scripts/kconfig,qconf) |
71 | LD_LIBRARY_PATH=$$LD_LIBRARY_PATH:$(TOPDIR)/scripts/kconfig \ |
71 | LD_LIBRARY_PATH=$$LD_LIBRARY_PATH:$(TOPDIR)/scripts/kconfig \ |
72 | ./scripts/kconfig/qconf ./config.in |
72 | ./scripts/kconfig/qconf ./config.in |
73 | |
73 | |
74 | menuconfig : scripts/lxdialog/lxdialog |
74 | menuconfig : $(TOPDIR)/scripts/lxdialog/lxdialog |
75 | $(call descend,scripts/kconfig,mconf) |
75 | $(call descend,scripts/kconfig,mconf) |
76 | ./scripts/kconfig/mconf ./config.in |
76 | ./scripts/kconfig/mconf ./config.in |
77 | |
77 | |
78 | scripts/lxdialog/lxdialog: |
| |
79 | make -C scripts/lxdialog |
| |
80 | |
| |
81 | config : |
78 | config : |
82 | $(call descend,scripts/kconfig,conf) |
79 | $(call descend,scripts/kconfig,conf) |
83 | ./scripts/kconfig/conf ./config.in |
80 | ./scripts/kconfig/conf ./config.in |
84 | |
81 | |
85 | oldconfig : |
82 | oldconfig : |
86 | $(call descend,scripts/kconfig,conf) |
83 | $(call descend,scripts/kconfig,conf) |
87 | ./scripts/kconfig/conf -o ./config.in |
84 | ./scripts/kconfig/conf -o ./config.in |
88 | |
85 | |
|