summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 3326c70..a85ed57 100644
--- a/Makefile
+++ b/Makefile
@@ -66,24 +66,27 @@ $(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
69xconfig : 69xconfig :
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
74menuconfig : scripts/lxdialog/lxdialog 74menuconfig : 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
78scripts/lxdialog/lxdialog:
79 make -C scripts/lxdialog
80
78config : 81config :
79 $(call descend,scripts/kconfig,conf) 82 $(call descend,scripts/kconfig,conf)
80 ./scripts/kconfig/conf ./config.in 83 ./scripts/kconfig/conf ./config.in
81 84
82oldconfig : 85oldconfig :
83 $(call descend,scripts/kconfig,conf) 86 $(call descend,scripts/kconfig,conf)
84 ./scripts/kconfig/conf -o ./config.in 87 ./scripts/kconfig/conf -o ./config.in
85 88
86randconfig : 89randconfig :
87 $(call descend,scripts/kconfig,conf) 90 $(call descend,scripts/kconfig,conf)
88 ./scripts/kconfig/conf -r ./config.in 91 ./scripts/kconfig/conf -r ./config.in
89 92