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