author | kergoth <kergoth> | 2002-11-05 18:26:02 (UTC) |
---|---|---|
committer | kergoth <kergoth> | 2002-11-05 18:26:02 (UTC) |
commit | 468f1826ade3afaf7a8b8587b297d9ec6e0ccf3f (patch) (unidiff) | |
tree | 76a3e2002b736da582de22852c9b4e7cfa6de2f2 | |
parent | bbacc58102236691c8161fac2674998ce428ac3c (diff) | |
download | opie-468f1826ade3afaf7a8b8587b297d9ec6e0ccf3f.zip opie-468f1826ade3afaf7a8b8587b297d9ec6e0ccf3f.tar.gz opie-468f1826ade3afaf7a8b8587b297d9ec6e0ccf3f.tar.bz2 |
Rearranged root makefile to fix dependencies on make targets, split config.in generation rules into .depends.cfgs
-rw-r--r-- | Makefile.test | 50 | ||||
-rw-r--r-- | Rules.make | 8 |
2 files changed, 40 insertions, 18 deletions
diff --git a/Makefile.test b/Makefile.test index 3311cde..b30b85d 100644 --- a/Makefile.test +++ b/Makefile.test | |||
@@ -2,61 +2,81 @@ | |||
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 | 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 $@; \ |
24 | fi; | 35 | fi; |
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 | ||
@@ -1,12 +1,12 @@ | |||
1 | ## targets ## | 1 | ## targets ## |
2 | 2 | ||
3 | $(configs) : | 3 | $(configs) : |
4 | $(call makecfg,$@) | 4 | $(call makecfg,$@) |
5 | 5 | ||
6 | $(TOPDIR)/.depends : $(shell if [ -e $(TOPDIR)/config.in ]\; then echo $(TOPDIR)/config.in\; fi\;) | 6 | $(TOPDIR)/.depends : $(shell if [ -e $(TOPDIR)/config.in ]\; then echo $(TOPDIR)/config.in\; fi\;) $(TOPDIR)/.config |
7 | @echo Generating dependency information... | 7 | @echo Generating dependency information... |
8 | # add to subdir-y, and add descend rules | 8 | # add to subdir-y, and add descend rules |
9 | @cat $(TOPDIR)/packages | \ | 9 | @cat $(TOPDIR)/packages | \ |
10 | awk '/^#/ { next }; {print \ | 10 | awk '/^#/ { next }; {print \ |
11 | ".PHONY : " $$2 "\n" \ | 11 | ".PHONY : " $$2 "\n" \ |
12 | "subdir-$$(" $$1 ") += " $$2 "\n\n" \ | 12 | "subdir-$$(" $$1 ") += " $$2 "\n\n" \ |
@@ -14,16 +14,18 @@ $(TOPDIR)/.depends : $(shell if [ -e $(TOPDIR)/config.in ]\; then echo $(TOPDIR) | |||
14 | "$$(call makefilegen,$$@)\n\n" \ | 14 | "$$(call makefilegen,$$@)\n\n" \ |
15 | $$2 " : " $$2 "/Makefile\n\t$$(call descend,$$@)\n"}'\ | 15 | $$2 " : " $$2 "/Makefile\n\t$$(call descend,$$@)\n"}'\ |
16 | > $(TOPDIR)/.depends | 16 | > $(TOPDIR)/.depends |
17 | # interpackage dependency generation | 17 | # interpackage dependency generation |
18 | @cat $(TOPDIR)/packages | \ | 18 | @cat $(TOPDIR)/packages | \ |
19 | $(TOPDIR)/scripts/deps.pl >> $(TOPDIR)/.depends | 19 | $(TOPDIR)/scripts/deps.pl >> $(TOPDIR)/.depends |
20 | |||
21 | $(TOPDIR)/.depends.cfgs: | ||
20 | # generation of config.in files, and config.in interdependencies | 22 | # generation of config.in files, and config.in interdependencies |
21 | @find $(TOPDIR)/ -name config.in | ( for cfg in `cat`; do dir=`dirname $$cfg`; name=`basename $$dir`; if [ ! -e $$dir/$$name.pro ]; then echo $$dir; fi; done; ) > dirs | 23 | @find $(TOPDIR)/ -name config.in | ( for cfg in `cat`; do dir=`dirname $$cfg`; name=`basename $$dir`; if [ ! -e $$dir/$$name.pro ]; then echo $$dir; fi; done; ) > dirs |
22 | @echo "configs += `echo \`cat dirs | sed -e's,^$(TOPDIR)/,$$(TOPDIR)/,g' -e's,$$,/config.in,g'\``" >> .depends | 24 | @echo "configs += `echo \`cat dirs | sed -e's,^$(TOPDIR)/,$$(TOPDIR)/,g' -e's,$$,/config.in,g'\``" >> $@ |
23 | @cat dirs | ( for i in `cat`; do if [ "`cat dirs|grep $$i 2>/dev/null|wc -l`" -ne "1" ]; then deps=`cat dirs|grep $$i| grep -v "^$$i$$"|for i in \`cat|sed -e's,^$(TOPDIR)/,$$(TOPDIR)/,g'\`; do echo $$i/config.in; done`; echo `echo $$i/config.in|sed -e 's,^$(TOPDIR)/,$$(TOPDIR)/,'` : $$deps; fi; done ) >> $(TOPDIR)/.depends | 25 | @cat dirs | ( for i in `cat`; do if [ "`cat dirs|grep $$i 2>/dev/null|wc -l`" -ne "1" ]; then deps=`cat dirs|grep $$i| grep -v "^$$i$$"|for i in \`cat|sed -e's,^$(TOPDIR)/,$$(TOPDIR)/,g'\`; do echo $$i/config.in; done`; echo `echo $$i/config.in|sed -e 's,^$(TOPDIR)/,$$(TOPDIR)/,'` : $$deps; fi; done ) >> $@ |
24 | @-rm -f dirs | 26 | @-rm -f dirs |
25 | 27 | ||
26 | $(TOPDIR)/qmake/qmake : | 28 | $(TOPDIR)/qmake/qmake : |
27 | $(call descend,$(TOPDIR)/qmake) | 29 | $(call descend,$(TOPDIR)/qmake) |
28 | 30 | ||
29 | $(TOPDIR)/scripts/lxdialog/lxdialog $(TOPDIR)/scripts/kconfig/conf scripts/kconfig/conf $(TOPDIR)/scripts/kconfig/mconf scripts/kconfig/mconf $(TOPDIR)/scripts/kconfig/qconf scripts/kconfig/qconf : | 31 | $(TOPDIR)/scripts/lxdialog/lxdialog $(TOPDIR)/scripts/kconfig/conf scripts/kconfig/conf $(TOPDIR)/scripts/kconfig/mconf scripts/kconfig/mconf $(TOPDIR)/scripts/kconfig/qconf scripts/kconfig/qconf : |