-rw-r--r-- | Makefile.test | 50 |
1 files changed, 35 insertions, 15 deletions
diff --git a/Makefile.test b/Makefile.test index 3311cde..b30b85d 100644 --- a/Makefile.test +++ b/Makefile.test | |||
@@ -5,19 +5,30 @@ export TOPDIR:=$(OPIEDIR) | |||
5 | export QMAKESPECSDIR=$(OPIEDIR)/mkspecs | 5 | export QMAKESPECSDIR=$(OPIEDIR)/mkspecs |
6 | export QMAKESPEC=$(QMAKESPECSDIR)/qws/linux-generic-g++ | 6 | export QMAKESPEC=$(QMAKESPECSDIR)/qws/linux-generic-g++ |
7 | 7 | ||
8 | all : | 8 | # $(TOPDIR)/.config depends on .depends.cfgs, as it depends on $(configs) |
9 | # in order to have a full set of config.in files. | ||
10 | # .depends depends on $(TOPDIR)/.config | ||
11 | # everything else depends on .depends, to ensure the dependencies are | ||
12 | # intact. | ||
13 | # | ||
14 | # NOTE: The order in which things happen in this makefile is | ||
15 | # -critical-. Do not rearrange this! | ||
16 | |||
17 | all : $(TOPDIR)/.config | ||
18 | |||
19 | $(TOPDIR)/.config : $(TOPDIR)/.depends.cfgs | ||
20 | |||
21 | all menuconfig xconfig oldconfig config randconfig allyesconfig allnoconfig defconfig : $(TOPDIR)/.depends | ||
9 | 22 | ||
10 | clean-configs : $(TOPDIR)/.depends | 23 | clean-configs : $(TOPDIR)/.depends |
11 | @echo "Wiping generated config.in files..." | 24 | @echo "Wiping generated config.in files..." |
12 | @-rm -f $(configs) | 25 | @-rm -f $(configs) |
13 | 26 | ||
14 | -include $(TOPDIR)/.config | 27 | -include $(TOPDIR)/.depends.cfgs |
15 | -include $(TOPDIR)/..config.cmd | ||
16 | -include $(TOPDIR)/.depends | ||
17 | 28 | ||
18 | all : $(TOPDIR)/.depends $(configs) $(subdir-y) | 29 | all menuconfig xconfig oldconfig config randconfig allyesconfig allnoconfig defconfig : $(configs) |
19 | 30 | ||
20 | ./.config: $(configs) | 31 | $(TOPDIR)/.config: $(TOPDIR)/.depends.cfgs $(configs) |
21 | $(call descend,scripts/kconfig,conf) | 32 | $(call descend,scripts/kconfig,conf) |
22 | @if [ ! -e $@ ]; then \ | 33 | @if [ ! -e $@ ]; then \ |
23 | cp $(TOPDIR)/def-configs/opie $@; \ | 34 | cp $(TOPDIR)/def-configs/opie $@; \ |
@@ -25,38 +36,47 @@ all : $(TOPDIR)/.depends $(configs) $(subdir-y) | |||
25 | @$(MAKE) -C scripts/kconfig conf; | 36 | @$(MAKE) -C scripts/kconfig conf; |
26 | ./scripts/kconfig/conf -s ./config.in | 37 | ./scripts/kconfig/conf -s ./config.in |
27 | 38 | ||
28 | xconfig: $(configs) | 39 | # config rules must have the $(configs) var defined |
40 | # at the time that they run. we must ensure that .depends.cfgs | ||
41 | # is built and included by the time we reach this point. | ||
42 | |||
43 | xconfig : | ||
29 | $(call descend,scripts/kconfig,qconf) | 44 | $(call descend,scripts/kconfig,qconf) |
30 | ./scripts/kconfig/qconf ./config.in | 45 | ./scripts/kconfig/qconf ./config.in |
31 | 46 | ||
32 | menuconfig: $(configs) scripts/lxdialog/lxdialog | 47 | menuconfig : scripts/lxdialog/lxdialog |
33 | $(call descend,scripts/kconfig,mconf) | 48 | $(call descend,scripts/kconfig,mconf) |
34 | ./scripts/kconfig/mconf ./config.in | 49 | ./scripts/kconfig/mconf ./config.in |
35 | 50 | ||
36 | config: $(configs) | 51 | config : |
37 | $(call descend,scripts/kconfig,conf) | 52 | $(call descend,scripts/kconfig,conf) |
38 | ./scripts/kconfig/conf ./config.in | 53 | ./scripts/kconfig/conf ./config.in |
39 | 54 | ||
40 | oldconfig: $(configs) | 55 | oldconfig : |
41 | $(call descend,scripts/kconfig,conf) | 56 | $(call descend,scripts/kconfig,conf) |
42 | ./scripts/kconfig/conf -o ./config.in | 57 | ./scripts/kconfig/conf -o ./config.in |
43 | 58 | ||
44 | randconfig: $(configs) | 59 | randconfig : |
45 | $(call descend,scripts/kconfig,conf) | 60 | $(call descend,scripts/kconfig,conf) |
46 | ./scripts/kconfig/conf -r ./config.in | 61 | ./scripts/kconfig/conf -r ./config.in |
47 | 62 | ||
48 | allyesconfig: $(configs) | 63 | allyesconfig : |
49 | $(call descend,scripts/kconfig,conf) | 64 | $(call descend,scripts/kconfig,conf) |
50 | ./scripts/kconfig/conf -y ./config.in | 65 | ./scripts/kconfig/conf -y ./config.in |
51 | 66 | ||
52 | allnoconfig: $(configs) | 67 | allnoconfig : |
53 | $(call descend,scripts/kconfig,conf) | 68 | $(call descend,scripts/kconfig,conf) |
54 | ./scripts/kconfig/conf -n ./config.in | 69 | ./scripts/kconfig/conf -n ./config.in |
55 | 70 | ||
56 | defconfig: $(configs) | 71 | defconfig : |
57 | $(call descend,scripts/kconfig,conf) | 72 | $(call descend,scripts/kconfig,conf) |
58 | ./scripts/kconfig/conf -d ./config.in | 73 | ./scripts/kconfig/conf -d ./config.in |
59 | 74 | ||
60 | 75 | ||
61 | include $(TOPDIR)/Rules.make | 76 | -include $(TOPDIR)/.config |
77 | -include $(TOPDIR)/..config.cmd | ||
78 | -include $(TOPDIR)/.depends | ||
62 | 79 | ||
80 | all : $(subdir-y) | ||
81 | |||
82 | include $(TOPDIR)/Rules.make | ||