author | schurig <schurig> | 2003-07-01 06:20:57 (UTC) |
---|---|---|
committer | schurig <schurig> | 2003-07-01 06:20:57 (UTC) |
commit | a7ef648891e3460cc4051591bdfc8c69e0d84a70 (patch) (unidiff) | |
tree | fcc6d5abb29ea0882c0d66e2e7d16f3639ade795 | |
parent | 1b9ed2e0406d99aa7eaa5c72b5022a438cf5d03f (diff) | |
download | opie-a7ef648891e3460cc4051591bdfc8c69e0d84a70.zip opie-a7ef648891e3460cc4051591bdfc8c69e0d84a70.tar.gz opie-a7ef648891e3460cc4051591bdfc8c69e0d84a70.tar.bz2 |
fixed bug about CURSES_LOC
-rw-r--r-- | Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -46,64 +46,67 @@ all menuconfig xconfig oldconfig config randconfig allyesconfig allnoconfig defc | |||
46 | 46 | ||
47 | clean-configs : | 47 | clean-configs : |
48 | @echo "Wiping generated config.in files..." | 48 | @echo "Wiping generated config.in files..." |
49 | @-rm -f $(configs) | 49 | @-rm -f $(configs) |
50 | 50 | ||
51 | ifneq ($(wildcard $(TOPDIR)/.depends.cfgs),) | 51 | ifneq ($(wildcard $(TOPDIR)/.depends.cfgs),) |
52 | include $(TOPDIR)/.depends.cfgs | 52 | include $(TOPDIR)/.depends.cfgs |
53 | endif | 53 | endif |
54 | 54 | ||
55 | all menuconfig xconfig oldconfig config randconfig allyesconfig allnoconfig defconfig : $(configs) | 55 | all menuconfig xconfig oldconfig config randconfig allyesconfig allnoconfig defconfig : $(configs) |
56 | 56 | ||
57 | $(TOPDIR)/.config: $(TOPDIR)/.depends.cfgs $(configs) | 57 | $(TOPDIR)/.config: $(TOPDIR)/.depends.cfgs $(configs) |
58 | $(call descend,scripts/kconfig,conf) | 58 | $(call descend,scripts/kconfig,conf) |
59 | @if [ ! -e $@ ]; then \ | 59 | @if [ ! -e $@ ]; then \ |
60 | cp $(TOPDIR)/def-configs/opie $@; \ | 60 | cp $(TOPDIR)/def-configs/opie $@; \ |
61 | fi | 61 | fi |
62 | @$(MAKE) -C scripts/kconfig conf | 62 | @$(MAKE) -C scripts/kconfig conf |
63 | ./scripts/kconfig/conf -s ./config.in | 63 | ./scripts/kconfig/conf -s ./config.in |
64 | 64 | ||
65 | # config rules must have the $(configs) var defined | 65 | # config rules must have the $(configs) var defined |
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 : 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 | |||
78 | config : | 81 | config : |
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 | ||
82 | oldconfig : | 85 | oldconfig : |
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 | ||
86 | randconfig : | 89 | randconfig : |
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 | ||
90 | allyesconfig : | 93 | allyesconfig : |
91 | $(call descend,scripts/kconfig,conf) | 94 | $(call descend,scripts/kconfig,conf) |
92 | ./scripts/kconfig/conf -y ./config.in | 95 | ./scripts/kconfig/conf -y ./config.in |
93 | 96 | ||
94 | allnoconfig : | 97 | allnoconfig : |
95 | $(call descend,scripts/kconfig,conf) | 98 | $(call descend,scripts/kconfig,conf) |
96 | ./scripts/kconfig/conf -n ./config.in | 99 | ./scripts/kconfig/conf -n ./config.in |
97 | 100 | ||
98 | defconfig : | 101 | defconfig : |
99 | $(call descend,scripts/kconfig,conf) | 102 | $(call descend,scripts/kconfig,conf) |
100 | ./scripts/kconfig/conf -d ./config.in | 103 | ./scripts/kconfig/conf -d ./config.in |
101 | 104 | ||
102 | 105 | ||
103 | export | 106 | export |
104 | 107 | ||
105 | ifeq ($(filter $(noconfig_targets),$(MAKECMDGOALS)),) | 108 | ifeq ($(filter $(noconfig_targets),$(MAKECMDGOALS)),) |
106 | 109 | ||
107 | export include-config := 1 | 110 | export include-config := 1 |
108 | 111 | ||
109 | -include $(TOPDIR)/.config | 112 | -include $(TOPDIR)/.config |