summaryrefslogtreecommitdiff
path: root/noncore/net/wellenreiter/Makefile
authormickeyl <mickeyl>2002-12-08 18:41:47 (UTC)
committer mickeyl <mickeyl>2002-12-08 18:41:47 (UTC)
commit1a4f97b01412700aaa19fda396844fd237f35c92 (patch) (side-by-side diff)
treee439f505f73a71e179748aca0bcaa93d70b6f594 /noncore/net/wellenreiter/Makefile
parentff55ff70dc982d070bb085acb96831ae30b30902 (diff)
downloadopie-1a4f97b01412700aaa19fda396844fd237f35c92.zip
opie-1a4f97b01412700aaa19fda396844fd237f35c92.tar.gz
opie-1a4f97b01412700aaa19fda396844fd237f35c92.tar.bz2
- new networks finally show up in the GUI
- using OTabWidget instead of QTabWidget - bugfixes - preparing to fully integrate libwellenreiter and the daemon into our buildsystem
Diffstat (limited to 'noncore/net/wellenreiter/Makefile') (more/less context) (show whitespace changes)
-rw-r--r--noncore/net/wellenreiter/Makefile28
1 files changed, 28 insertions, 0 deletions
diff --git a/noncore/net/wellenreiter/Makefile b/noncore/net/wellenreiter/Makefile
new file mode 100644
index 0000000..22b23f4
--- a/dev/null
+++ b/noncore/net/wellenreiter/Makefile
@@ -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: