author | kergoth <kergoth> | 2002-11-06 21:27:36 (UTC) |
---|---|---|
committer | kergoth <kergoth> | 2002-11-06 21:27:36 (UTC) |
commit | 1305bd1b6b9495783a1c189a206e4cc2b3d8d1c4 (patch) (unidiff) | |
tree | 6168787185b7d2b7dd359528959baa4cd62266f0 | |
parent | 11ce576fed7dbcafd64549abe9fc9398c1804231 (diff) | |
download | opie-1305bd1b6b9495783a1c189a206e4cc2b3d8d1c4.zip opie-1305bd1b6b9495783a1c189a206e4cc2b3d8d1c4.tar.gz opie-1305bd1b6b9495783a1c189a206e4cc2b3d8d1c4.tar.bz2 |
Filter out itself when descending
-rw-r--r-- | Rules.make | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -10,7 +10,7 @@ $(TOPDIR)/.depends : $(shell if [ -e $(TOPDIR)/config.in ]\; then echo $(TOPDIR) | |||
10 | awk '{print \ | 10 | awk '{print \ |
11 | ".PHONY : " $$2 "\n" \ | 11 | ".PHONY : " $$2 "\n" \ |
12 | "subdir-$$(" $$1 ") += " $$2 "\n\n"; \ | 12 | "subdir-$$(" $$1 ") += " $$2 "\n\n"; \ |
13 | print $$2 " : " $$2 "/Makefile\n\t$$(call descend,$$@,$(filter-out $$@,$$(MAKECMDGOALS)))\n"; }' > $(TOPDIR)/.depends | 13 | print $$2 " : " $$2 "/Makefile\n\t$$(call descend,$$@,$(filter-out $$@,$$(filter-out $$@,$$(MAKECMDGOALS))))\n"; }' > $(TOPDIR)/.depends |
14 | cat $(TOPDIR)/packages | grep -v '^#' | \ | 14 | cat $(TOPDIR)/packages | grep -v '^#' | \ |
15 | perl -ne '($$cfg, $$dir, $$pro) = $$_ =~ /^(\S+)\s+(\S+)\s+(\S+)/; if ( -e "$$dir/$$pro" ) { print "$$dir/Makefile : $$dir/$$pro \$$(TOPDIR)/qmake/qmake\n\t\$$(call makefilegen,\$$@)\n\n"; }' \ | 15 | perl -ne '($$cfg, $$dir, $$pro) = $$_ =~ /^(\S+)\s+(\S+)\s+(\S+)/; if ( -e "$$dir/$$pro" ) { print "$$dir/Makefile : $$dir/$$pro \$$(TOPDIR)/qmake/qmake\n\t\$$(call makefilegen,\$$@)\n\n"; }' \ |
16 | >> $(TOPDIR)/.depends | 16 | >> $(TOPDIR)/.depends |
@@ -81,7 +81,8 @@ define descend | |||
81 | endef | 81 | endef |
82 | 82 | ||
83 | define makefilegen | 83 | define makefilegen |
84 | cd $(if $(1),$(shell dirname $(1))); $(TOPDIR)/qmake/qmake $(3) -o $(if $(1),$(shell basename $(1))) `echo $(1)|sed -e 's,/Makefile$$,,g' -e 's,.*/,,g'`.pro | 84 | cd $(if $(1),$(shell dirname $(1))); $(TOPDIR)/qmake/qmake $(3) -o $(if $(1),$(shell basename $(1))) `cat $(OPIEDIR)/packages | grep " \`echo $(1)|sed -e 's,/Makefile$$,,'\`" | \ |
85 | head -1 | awk '{print $$3}'` | ||
85 | endef | 86 | endef |
86 | 87 | ||
87 | define makecfg | 88 | define makecfg |