summaryrefslogtreecommitdiffabout
authorulf69 <ulf69>2004-10-24 18:10:42 (UTC)
committer ulf69 <ulf69>2004-10-24 18:10:42 (UTC)
commitfeff0930372dd51af24dc3b46697e70838277ea5 (patch) (unidiff)
tree3b182bed6aa6a4126befba648e72091d4ba4c34c
parent7e28e9e5aa5b390653a640be508f0c40c73d9060 (diff)
downloadkdepimpi-feff0930372dd51af24dc3b46697e70838277ea5.zip
kdepimpi-feff0930372dd51af24dc3b46697e70838277ea5.tar.gz
kdepimpi-feff0930372dd51af24dc3b46697e70838277ea5.tar.bz2
disabled opie resource
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--Makefile.Embedded3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile.Embedded b/Makefile.Embedded
index da5feba..b677087 100644
--- a/Makefile.Embedded
+++ b/Makefile.Embedded
@@ -1,204 +1,207 @@
1export KDEPIMDIR = $(shell pwd) 1export KDEPIMDIR = $(shell pwd)
2 2
3export KDEPIM_VERSION=$(shell sed -e 's/.*\"\([0-9]*\.[0-9]*\.[0-9]*\).*/\1/' < version) 3export KDEPIM_VERSION=$(shell sed -e 's/.*\"\([0-9]*\.[0-9]*\.[0-9]*\).*/\1/' < version)
4 4
5ifeq ($(PLATFORM) , zaurus) 5ifeq ($(PLATFORM) , zaurus)
6 BUILD_NO_LDAP_PLUGIN=1 6 BUILD_NO_LDAP_PLUGIN=1
7endif 7endif
8 8
9ifneq ($(PLATFORM) , zaurus) 9ifneq ($(PLATFORM) , zaurus)
10 BUILD_NO_SHARP_PLUGIN=1 10 BUILD_NO_SHARP_PLUGIN=1
11endif 11endif
12 12
13#opie plugin is deprecated. The qtopia plugin handles the task from now on.
14BUILD_NO_OPIE_PLUGIN=1
15
13SUBDIRS_MICROKDE = \ 16SUBDIRS_MICROKDE = \
14 libical/src/libical \ 17 libical/src/libical \
15 libical/src/libicalss \ 18 libical/src/libicalss \
16 qtcompat \ 19 qtcompat \
17 microkde \ 20 microkde \
18 libkcal \ 21 libkcal \
19 libkdepim \ 22 libkdepim \
20 kabc \ 23 kabc \
21 kabc/formats/binary \ 24 kabc/formats/binary \
22 kabc/plugins/file \ 25 kabc/plugins/file \
23 kabc/plugins/dir \ 26 kabc/plugins/dir \
24 korganizer \ 27 korganizer \
25 kalarmd \ 28 kalarmd \
26 kaddressbook 29 kaddressbook
27 30
28SUBDIRS_QTOPIA_PLUGIN = \ 31SUBDIRS_QTOPIA_PLUGIN = \
29 kabc/plugins/qtopia 32 kabc/plugins/qtopia
30 33
31SUBDIRS_OPIE_PLUGIN = \ 34SUBDIRS_OPIE_PLUGIN = \
32 kabc/plugins/opie 35 kabc/plugins/opie
33 36
34SUBDIRS_SHARP_PLUGIN = \ 37SUBDIRS_SHARP_PLUGIN = \
35 kabc/plugins/sharpdtm 38 kabc/plugins/sharpdtm
36 39
37SUBDIRS_LDAP_PLUGIN = \ 40SUBDIRS_LDAP_PLUGIN = \
38 kabc/plugins/ldap 41 kabc/plugins/ldap
39 42
40SUBDIRS_MICROMAIL = \ 43SUBDIRS_MICROMAIL = \
41 kmicromail/libetpan \ 44 kmicromail/libetpan \
42 kmicromail/libmailwrapper \ 45 kmicromail/libmailwrapper \
43 kmicromail 46 kmicromail
44 47
45SUBDIRS_GAMMU = \ 48SUBDIRS_GAMMU = \
46 gammu/emb/common \ 49 gammu/emb/common \
47 gammu/emb/gammu 50 gammu/emb/gammu
48 51
49SUBDIRS_PWMANAGER = \ 52SUBDIRS_PWMANAGER = \
50 pwmanager/libcrypt/mpi \ 53 pwmanager/libcrypt/mpi \
51 pwmanager/libcrypt/error \ 54 pwmanager/libcrypt/error \
52 pwmanager/libcrypt/cipher \ 55 pwmanager/libcrypt/cipher \
53 pwmanager/libcrypt/zlib \ 56 pwmanager/libcrypt/zlib \
54 pwmanager/pwmanager 57 pwmanager/pwmanager
55 58
56SUBDIRS = \ 59SUBDIRS = \
57 $(SUBDIRS_MICROKDE) \ 60 $(SUBDIRS_MICROKDE) \
58 $(SUBDIRS_QTOPIA_PLUGIN) \ 61 $(SUBDIRS_QTOPIA_PLUGIN) \
59 $(SUBDIRS_OPIE_PLUGIN) \ 62 $(SUBDIRS_OPIE_PLUGIN) \
60 $(SUBDIRS_SHARP_PLUGIN) \ 63 $(SUBDIRS_SHARP_PLUGIN) \
61 $(SUBDIRS_LDAP_PLUGIN) \ 64 $(SUBDIRS_LDAP_PLUGIN) \
62 $(SUBDIRS_MICROMAIL) \ 65 $(SUBDIRS_MICROMAIL) \
63 $(SUBDIRS_GAMMU) \ 66 $(SUBDIRS_GAMMU) \
64 $(SUBDIRS_PWMANAGER) 67 $(SUBDIRS_PWMANAGER)
65 68
66 69
67all: build_microkde \ 70all: build_microkde \
68 build_qtopia_plugin \ 71 build_qtopia_plugin \
69 build_opie_plugin \ 72 build_opie_plugin \
70 build_sharp_plugin \ 73 build_sharp_plugin \
71 build_ldap_plugin \ 74 build_ldap_plugin \
72 build_micromail \ 75 build_micromail \
73 build_gammu \ 76 build_gammu \
74 build_pwmanager 77 build_pwmanager
75 78
76 79
77build_microkde: variable_test tmake 80build_microkde: variable_test tmake
78 for i in $(SUBDIRS_MICROKDE); do pushd $$i; \ 81 for i in $(SUBDIRS_MICROKDE); do pushd $$i; \
79 make -f Makefile$(PLATFORM) || exit 1; popd; \ 82 make -f Makefile$(PLATFORM) || exit 1; popd; \
80 done 83 done
81 84
82build_qtopia_plugin: build_microkde 85build_qtopia_plugin: build_microkde
83 ifdef BUILD_NO_QTOPIA_PLUGIN 86 ifdef BUILD_NO_QTOPIA_PLUGIN
84 @echo == qtopia plugin not build. 87 @echo == qtopia plugin not build.
85 else 88 else
86 for i in $(SUBDIRS_QTOPIA_PLUGIN); do pushd $$i; \ 89 for i in $(SUBDIRS_QTOPIA_PLUGIN); do pushd $$i; \
87 make -f Makefile$(PLATFORM) || exit 1; popd; \ 90 make -f Makefile$(PLATFORM) || exit 1; popd; \
88 done 91 done
89 endif 92 endif
90 93
91build_opie_plugin: build_microkde 94build_opie_plugin: build_microkde
92 ifdef BUILD_NO_OPIE_PLUGIN 95 ifdef BUILD_NO_OPIE_PLUGIN
93 @echo == opie plugin not build. 96 @echo == opie plugin not build.
94 else 97 else
95 for i in $(SUBDIRS_OPIE_PLUGIN); do pushd $$i; \ 98 for i in $(SUBDIRS_OPIE_PLUGIN); do pushd $$i; \
96 make -f Makefile$(PLATFORM) || exit 1; popd; \ 99 make -f Makefile$(PLATFORM) || exit 1; popd; \
97 done 100 done
98 endif 101 endif
99 102
100build_sharp_plugin: build_microkde 103build_sharp_plugin: build_microkde
101 ifdef BUILD_NO_SHARP_PLUGIN 104 ifdef BUILD_NO_SHARP_PLUGIN
102 @echo == ldap plugin not build. 105 @echo == ldap plugin not build.
103 else 106 else
104 for i in $(SUBDIRS_SHARP_PLUGIN); do pushd $$i; \ 107 for i in $(SUBDIRS_SHARP_PLUGIN); do pushd $$i; \
105 make -f Makefile$(PLATFORM) || exit 1; popd; \ 108 make -f Makefile$(PLATFORM) || exit 1; popd; \
106 done 109 done
107 endif 110 endif
108 111
109build_ldap_plugin: build_microkde 112build_ldap_plugin: build_microkde
110 ifdef BUILD_NO_LDAP_PLUGIN 113 ifdef BUILD_NO_LDAP_PLUGIN
111 @echo == ldap plugin not build. 114 @echo == ldap plugin not build.
112 else 115 else
113 for i in $(SUBDIRS_LDAP_PLUGIN); do pushd $$i; \ 116 for i in $(SUBDIRS_LDAP_PLUGIN); do pushd $$i; \
114 make -f Makefile$(PLATFORM) || exit 1; popd; \ 117 make -f Makefile$(PLATFORM) || exit 1; popd; \
115 done 118 done
116 endif 119 endif
117 120
118 121
119build_micromail: build_microkde 122build_micromail: build_microkde
120 ifdef BUILD_NO_MICROMAIL 123 ifdef BUILD_NO_MICROMAIL
121 @echo == kmicromail not build. 124 @echo == kmicromail not build.
122 else 125 else
123 for i in $(SUBDIRS_MICROMAIL); do pushd $$i; \ 126 for i in $(SUBDIRS_MICROMAIL); do pushd $$i; \
124 make -f Makefile$(PLATFORM) || exit 1; popd; \ 127 make -f Makefile$(PLATFORM) || exit 1; popd; \
125 done 128 done
126 endif 129 endif
127 130
128build_gammu: variable_test tmake 131build_gammu: variable_test tmake
129 ifdef BUILD_NO_GAMMU 132 ifdef BUILD_NO_GAMMU
130 @echo == gammu not build. 133 @echo == gammu not build.
131 else 134 else
132 for i in $(SUBDIRS_GAMMU); do pushd $$i; \ 135 for i in $(SUBDIRS_GAMMU); do pushd $$i; \
133 make -f Makefile$(PLATFORM) || exit 1; popd; \ 136 make -f Makefile$(PLATFORM) || exit 1; popd; \
134 done 137 done
135 endif 138 endif
136 139
137build_pwmanager: build_microkde 140build_pwmanager: build_microkde
138 ifdef BUILD_NO_PWMANAGER 141 ifdef BUILD_NO_PWMANAGER
139 @echo == pwmanager not build. 142 @echo == pwmanager not build.
140 else 143 else
141 for i in $(SUBDIRS_PWMANAGER); do pushd $$i; \ 144 for i in $(SUBDIRS_PWMANAGER); do pushd $$i; \
142 make -f Makefile$(PLATFORM) || exit 1; popd; \ 145 make -f Makefile$(PLATFORM) || exit 1; popd; \
143 done 146 done
144 endif 147 endif
145 148
146 149
147variable_info: 150variable_info:
148 @echo -------------------------------------- 151 @echo --------------------------------------
149 @echo KDEPIM buildsystem, variableinfo... 152 @echo KDEPIM buildsystem, variableinfo...
150 @echo KDEPIMDIR=$(KDEPIMDIR) 153 @echo KDEPIMDIR=$(KDEPIMDIR)
151 @echo QTDIR=$(QTDIR) 154 @echo QTDIR=$(QTDIR)
152 @echo QPEDIR=$(QPEDIR) 155 @echo QPEDIR=$(QPEDIR)
153 @echo OPIEDIR=$(OPIEDIR) 156 @echo OPIEDIR=$(OPIEDIR)
154 @echo PLATFORM=$(PLATFORM) 157 @echo PLATFORM=$(PLATFORM)
155 @echo RELEASE_DEBUG=$(RELEASE_DEBUG) 158 @echo RELEASE_DEBUG=$(RELEASE_DEBUG)
156 @echo BUILD_NO_MICROMAIL=$(BUILD_NO_MICROMAIL) 159 @echo BUILD_NO_MICROMAIL=$(BUILD_NO_MICROMAIL)
157 @echo BUILD_NO_LDAP_PLUGIN=$(BUILD_NO_LDAP_PLUGIN) 160 @echo BUILD_NO_LDAP_PLUGIN=$(BUILD_NO_LDAP_PLUGIN)
158 @echo BUILD_NO_OPIE_PLUGIN=$(BUILD_NO_OPIE_PLUGIN) 161 @echo BUILD_NO_OPIE_PLUGIN=$(BUILD_NO_OPIE_PLUGIN)
159 @echo BUILD_NO_QTOPIA_PLUGIN=$(BUILD_NO_QTOPIA_PLUGIN) 162 @echo BUILD_NO_QTOPIA_PLUGIN=$(BUILD_NO_QTOPIA_PLUGIN)
160 @echo BUILD_NO_SHARP_PLUGIN=$(BUILD_NO_SHARP_PLUGIN) 163 @echo BUILD_NO_SHARP_PLUGIN=$(BUILD_NO_SHARP_PLUGIN)
161 ifndef BUILD_NO_SHARP_PLUGIN 164 ifndef BUILD_NO_SHARP_PLUGIN
162 @echo SHARPDTMSDK=$(SHARPDTMSDK) 165 @echo SHARPDTMSDK=$(SHARPDTMSDK)
163 endif 166 endif
164 @echo BUILD_NO_GAMMU=$(BUILD_NO_GAMMU) 167 @echo BUILD_NO_GAMMU=$(BUILD_NO_GAMMU)
165 @echo BUILD_NO_PWMANAGER=$(BUILD_NO_PWMANAGER) 168 @echo BUILD_NO_PWMANAGER=$(BUILD_NO_PWMANAGER)
166 @echo -------------------------------------- 169 @echo --------------------------------------
167 170
168variable_test: variable_info 171variable_test: variable_info
169 @echo KDEPIM buildsystem, variablecheck... 172 @echo KDEPIM buildsystem, variablecheck...
170 ifndef KDEPIMDIR 173 ifndef KDEPIMDIR
171 @echo KDEPIMDIR is not defined. 174 @echo KDEPIMDIR is not defined.
172 $(error KDEPIMDIR is not defined) 175 $(error KDEPIMDIR is not defined)
173 endif 176 endif
174 ifndef PLATFORM 177 ifndef PLATFORM
175 @echo PLATFORM is not defined. 178 @echo PLATFORM is not defined.
176 $(error PLATFORM is not defined) 179 $(error PLATFORM is not defined)
177 endif 180 endif
178 ifdef BUILD_NO_LDAP_PLUGIN 181 ifdef BUILD_NO_LDAP_PLUGIN
179 @echo LDAP PLUGIN will not be build, because BUILD_NO_LDAP_PLUGIN is set to $(BUILD_NO_LDAP_PLUGIN) 182 @echo LDAP PLUGIN will not be build, because BUILD_NO_LDAP_PLUGIN is set to $(BUILD_NO_LDAP_PLUGIN)
180 endif 183 endif
181 ifdef BUILD_NO_OPIE_PLUGIN 184 ifdef BUILD_NO_OPIE_PLUGIN
182 @echo OPIE PLUGIN will not be build, because BUILD_NO_OPIE_PLUGIN is set to $(BUILD_NO_OPIE_PLUGIN) 185 @echo OPIE PLUGIN will not be build, because BUILD_NO_OPIE_PLUGIN is set to $(BUILD_NO_OPIE_PLUGIN)
183 endif 186 endif
184 ifdef BUILD_NO_QTOPIA_PLUGIN 187 ifdef BUILD_NO_QTOPIA_PLUGIN
185 @echo QTOPIA PLUGIN will not be build, because BUILD_NO__QTOPIA_PLUGIN is set to $(BUILD_NO__QTOPIA_PLUGIN) 188 @echo QTOPIA PLUGIN will not be build, because BUILD_NO__QTOPIA_PLUGIN is set to $(BUILD_NO__QTOPIA_PLUGIN)
186 endif 189 endif
187 ifdef BUILD_NO_MICROMAIL 190 ifdef BUILD_NO_MICROMAIL
188 @echo MICROMAIL will not be build, because BUILD_NO_MICROMAIL is set to $(BUILD_NO_MICROMAIL) 191 @echo MICROMAIL will not be build, because BUILD_NO_MICROMAIL is set to $(BUILD_NO_MICROMAIL)
189 endif 192 endif
190 ifdef BUILD_NO_SHARP_PLUGIN 193 ifdef BUILD_NO_SHARP_PLUGIN
191 @echo SHARP PLUGIN will not be build, because BUILD_NO_SHARP_PLUGIN is set to $(BUILD_NO_SHARP_PLUGIN) 194 @echo SHARP PLUGIN will not be build, because BUILD_NO_SHARP_PLUGIN is set to $(BUILD_NO_SHARP_PLUGIN)
192 else 195 else
193 ifndef SHARPDTMSDK 196 ifndef SHARPDTMSDK
194 @echo SHARP PLUGIN can not be build, because SHARPDTMSDK is set to $(SHARPDTMSDK) 197 @echo SHARP PLUGIN can not be build, because SHARPDTMSDK is set to $(SHARPDTMSDK)
195 $(error SHARPDTMSDK is not defined) 198 $(error SHARPDTMSDK is not defined)
196 endif 199 endif
197 endif 200 endif
198 ifdef BUILD_NO_GAMMU 201 ifdef BUILD_NO_GAMMU
199 @echo GAMMU will not be build, because BUILD_NO_GAMMU is set to $(BUILD_NO_GAMMU) 202 @echo GAMMU will not be build, because BUILD_NO_GAMMU is set to $(BUILD_NO_GAMMU)
200 endif 203 endif
201 ifdef BUILD_NO_PWMANAGER 204 ifdef BUILD_NO_PWMANAGER
202 @echo PWMANAGER will not be build, because BUILD_NO_PWMANAGER is set to $(BUILD_NO_PWMANAGER) 205 @echo PWMANAGER will not be build, because BUILD_NO_PWMANAGER is set to $(BUILD_NO_PWMANAGER)
203 endif 206 endif
204 @echo -------------------------------------- 207 @echo --------------------------------------