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) (unidiff)
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) (ignore 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 @@
1# Warning: Handcrafted!
2
3#############################################################################
4# Makefile for building targets in sub directories.
5# Project: wellenreiter
6# Template: subdirs
7#############################################################################
8
9 MAKEFILE=Makefile
10 TMAKE =tmake
11
12 SUBDIRS =libwellenreiter/source daemon/source gui
13
14all: $(SUBDIRS)
15
16$(SUBDIRS): FORCE
17 cd $@; $(MAKE)
18
19tmake:
20 tmake wellenreiter.pro
21
22tmake_all:
23 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
24
25clean release debug:
26 for i in $(SUBDIRS); do ( if [ -d $$i ]; then cd $$i ; $(MAKE) $@; fi; ) ; done
27
28FORCE: