summaryrefslogtreecommitdiff
path: root/Rules.make
authorkergoth <kergoth>2002-11-01 19:51:00 (UTC)
committer kergoth <kergoth>2002-11-01 19:51:00 (UTC)
commit1a0dd7409aeb07b7123755d5849837073c93636a (patch) (side-by-side diff)
tree41d6ed12f88577278dd1f1f171ad61b81186fdb4 /Rules.make
parent0380a66a6edc8692668a24a49082881b13a4c5fc (diff)
downloadopie-1a0dd7409aeb07b7123755d5849837073c93636a.zip
opie-1a0dd7409aeb07b7123755d5849837073c93636a.tar.gz
opie-1a0dd7409aeb07b7123755d5849837073c93636a.tar.bz2
Starting to get the makefile rules in place
Diffstat (limited to 'Rules.make') (more/less context) (ignore whitespace changes)
-rw-r--r--Rules.make42
1 files changed, 42 insertions, 0 deletions
diff --git a/Rules.make b/Rules.make
new file mode 100644
index 0000000..b545273
--- a/dev/null
+++ b/Rules.make
@@ -0,0 +1,42 @@
+## targets ##
+
+$(TOPDIR)/config.in :
+ @-rm -f $@
+ @for cfg in `find $(TOPDIR) -name config.in`; do \
+ echo 'include $$cfg' >> $(TOPDIR)/config.in; \
+ done;
+
+$(TOPDIR)/.depends :
+ @cat $(TOPDIR)/packages | \
+ awk '{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
+
+$(TOPDIR)/qmake/qmake :
+ $(call descend,$(TOPDIR)/qmake)
+
+$(TOPDIR)/scripts/lxdialog/lxdialog :
+ $(call descend,$(TOPDIR)/scripts/lxdialog)
+
+$(TOPDIR)/scripts/kconfig/conf scripts/kconfig/conf:
+ $(call descend,$(TOPDIR)/scripts/kconfig,conf)
+
+$(TOPDIR)/scripts/kconfig/mconf scripts/kconfig/mconf:
+ $(call descend,$(TOPDIR)/scripts/kconfig,mconf)
+
+$(TOPDIR)/scripts/kconfig/qconf scripts/kconfijg/qconf:
+ $(call descend,$(TOPDIR)/scripts/kconfig,qconf)
+
+## general rules ##
+
+define descend
+ $(MAKE) -C $(1) $(2)
+endef
+
+define makefilegen
+ cd $(shell dirname $(1)); $(TOPDIR)/qmake/qmake $(3) -o $(shell basename $(1)) `echo $(1)|sed -e 's,/Makefile$$,,g' -e 's,.*/,,g'`.pro
+endef