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
@@ -12,3 +12,3 @@ $(TOPDIR)/.depends : $(shell if [ -e $(TOPDIR)/config.in ]\; then echo $(TOPDIR) | |||
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 '^#' | \ |
@@ -83,3 +83,4 @@ endef | |||
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 |