author | kergoth <kergoth> | 2003-01-16 18:06:36 (UTC) |
---|---|---|
committer | kergoth <kergoth> | 2003-01-16 18:06:36 (UTC) |
commit | d27bce3128744350adace08d0768c846acc48a04 (patch) (side-by-side diff) | |
tree | bf9a54e8de5d384c6df5d5cf8c579d0378d8d7e7 /Rules.make | |
parent | c984baa73724d079076b28788c174ce9fa83fdb5 (diff) | |
download | opie-d27bce3128744350adace08d0768c846acc48a04.zip opie-d27bce3128744350adace08d0768c846acc48a04.tar.gz opie-d27bce3128744350adace08d0768c846acc48a04.tar.bz2 |
Rules.make
-rw-r--r-- | Rules.make | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -7,5 +7,5 @@ $(TOPDIR)/.depends : $(shell if [ -e $(TOPDIR)/config.in ]\; then echo $(TOPDIR) @echo Generating dependency information... # add to subdir-y, and add descend rules - cat $(TOPDIR)/packages | grep -v '^#' | \ + @cat $(TOPDIR)/packages | grep -v '^#' | \ awk '{print \ ".PHONY : " $$2 "\n" \ @@ -13,8 +13,8 @@ $(TOPDIR)/.depends : $(shell if [ -e $(TOPDIR)/config.in ]\; then echo $(TOPDIR) print $$2 " : " $$2 "/Makefile\n\t$$(call descend,$$@,$(filter-out $$@,$$(filter-out $$@,$$(MAKECMDGOALS))))\n"; }' > $(TOPDIR)/.depends cat $(TOPDIR)/packages | grep -v '^#' | \ - 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"; }' \ + perl -ne '($$cfg, $$dir, $$pro) = $$_ =~ /^(\S+)\s+(\S+)\s+(\S+)/; if ( -e "$$dir/$$pro" ) { print "$$dir/Makefile : $$dir/$$pro \$$(QMAKE)\n\t\$$(call makefilegen,\$$@)\n\n"; }' \ >> $(TOPDIR)/.depends # interpackage dependency generation - cat $(TOPDIR)/packages | \ + @cat $(TOPDIR)/packages | \ $(TOPDIR)/scripts/deps.pl >> $(TOPDIR)/.depends |