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 /Rules.make | |
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-- | Rules.make | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -2,9 +2,9 @@ | |||
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 \ |
@@ -16,12 +16,14 @@ $(TOPDIR)/.depends : $(shell if [ -e $(TOPDIR)/config.in ]\; then echo $(TOPDIR) | |||
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) |