author | kergoth <kergoth> | 2002-11-05 18:29:50 (UTC) |
---|---|---|
committer | kergoth <kergoth> | 2002-11-05 18:29:50 (UTC) |
commit | 5bf628ee145b3bdd777cf4bc541aee82b8700884 (patch) (unidiff) | |
tree | 7c89fe80b1008e83db25e7bcbf59035ac45c30fc | |
parent | 468f1826ade3afaf7a8b8587b297d9ec6e0ccf3f (diff) | |
download | opie-5bf628ee145b3bdd777cf4bc541aee82b8700884.zip opie-5bf628ee145b3bdd777cf4bc541aee82b8700884.tar.gz opie-5bf628ee145b3bdd777cf4bc541aee82b8700884.tar.bz2 |
oops clean-configs shoudl depend on .depends.cfgs not .depends
-rw-r--r-- | Makefile.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.test b/Makefile.test index b30b85d..74c6587 100644 --- a/Makefile.test +++ b/Makefile.test | |||
@@ -1,55 +1,55 @@ | |||
1 | #!/usr/bin/make -f | 1 | #!/usr/bin/make -f |
2 | export OPIEDIR:=$(shell pwd) | 2 | export OPIEDIR:=$(shell pwd) |
3 | export TOPDIR:=$(OPIEDIR) | 3 | export TOPDIR:=$(OPIEDIR) |
4 | 4 | ||
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 | # $(TOPDIR)/.config depends on .depends.cfgs, as it depends on $(configs) | 8 | # $(TOPDIR)/.config depends on .depends.cfgs, as it depends on $(configs) |
9 | # in order to have a full set of config.in files. | 9 | # in order to have a full set of config.in files. |
10 | # .depends depends on $(TOPDIR)/.config | 10 | # .depends depends on $(TOPDIR)/.config |
11 | # everything else depends on .depends, to ensure the dependencies are | 11 | # everything else depends on .depends, to ensure the dependencies are |
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 | 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 : |