summaryrefslogtreecommitdiff
path: root/noncore/net/wellenreiter/Makefile.static
authormickeyl <mickeyl>2002-12-09 14:13:01 (UTC)
committer mickeyl <mickeyl>2002-12-09 14:13:01 (UTC)
commit5202da78533aed8d48f63d764128929423fd6822 (patch) (side-by-side diff)
tree3130722430573994def2dd896163b7a1bd6e8230 /noncore/net/wellenreiter/Makefile.static
parentfffd954b4ea3c124a37cab9af99b248986029436 (diff)
downloadopie-5202da78533aed8d48f63d764128929423fd6822.zip
opie-5202da78533aed8d48f63d764128929423fd6822.tar.gz
opie-5202da78533aed8d48f63d764128929423fd6822.tar.bz2
Wellenreiter is now fully integrated into the Opie build environment.
If you want to play with what we have yet, be sure to add the following to the makefile: * noncore/net/wellenreiter/libwellenreiter * noncore/net/wellenreiter/daemon * noncore/net/wellenreiter/gui Don't add the toplevel noncore/net/wellenreiter, because the Makefile in there is handcrafted.
Diffstat (limited to 'noncore/net/wellenreiter/Makefile.static') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/wellenreiter/Makefile.static28
1 files changed, 28 insertions, 0 deletions
diff --git a/noncore/net/wellenreiter/Makefile.static b/noncore/net/wellenreiter/Makefile.static
new file mode 100644
index 0000000..22b23f4
--- a/dev/null
+++ b/noncore/net/wellenreiter/Makefile.static
@@ -0,0 +1,28 @@
+# Warning: Handcrafted!
+
+#############################################################################
+# Makefile for building targets in sub directories.
+# Project: wellenreiter
+# Template: subdirs
+#############################################################################
+
+MAKEFILE= Makefile
+TMAKE = tmake
+
+SUBDIRS = libwellenreiter/source daemon/source gui
+
+all: $(SUBDIRS)
+
+$(SUBDIRS): FORCE
+ cd $@; $(MAKE)
+
+tmake:
+ tmake wellenreiter.pro
+
+tmake_all:
+ for i in $(SUBDIRS); do ( if [ -d $$i ]; then cd $$i ; pro=`basename $$i`.pro ; $(TMAKE) $$pro -o $(MAKEFILE); grep "TEMPLATE.*subdirs" $$pro 2>/dev/null >/dev/null && $(MAKE) -f $(MAKEFILE) tmake_all || true; fi; ) ; done
+
+clean release debug:
+ for i in $(SUBDIRS); do ( if [ -d $$i ]; then cd $$i ; $(MAKE) $@; fi; ) ; done
+
+FORCE: