summaryrefslogtreecommitdiff
path: root/Rules.make
Side-by-side diff
Diffstat (limited to 'Rules.make') (more/less context) (ignore whitespace changes)
-rw-r--r--Rules.make10
1 files changed, 4 insertions, 6 deletions
diff --git a/Rules.make b/Rules.make
index b545273..2fa5e7f 100644
--- a/Rules.make
+++ b/Rules.make
@@ -1,20 +1,18 @@
## targets ##
$(TOPDIR)/config.in :
- @-rm -f $@
- @for cfg in `find $(TOPDIR) -name config.in`; do \
- echo 'include $$cfg' >> $(TOPDIR)/config.in; \
- done;
-$(TOPDIR)/.depends :
+$(TOPDIR)/.depends : $(TOPDIR)/config.in
@cat $(TOPDIR)/packages | \
- awk '{print \
+ awk '/^#/ { next }; {print \
".PHONY : " $$2 "\n" \
"subdir-$$(" $$1 ") += " $$2 "\n\n" \
$$2 "/Makefile : " $$2 "/" $$3 " $$(TOPDIR)/qmake/qmake\n\t" \
"$$(call makefilegen,$$@)\n\n" \
$$2 " : " $$2 "/Makefile\n\t$$(call descend,$$@)\n"}'\
> $(TOPDIR)/.depends
+ @cat $(TOPDIR)/packages | \
+ $(TOPDIR)/scripts/deps.pl >> $(TOPDIR)/.depends
$(TOPDIR)/qmake/qmake :
$(call descend,$(TOPDIR)/qmake)