-rw-r--r-- | Makefile.Embedded | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile.Embedded b/Makefile.Embedded index b677087..467710f 100644 --- a/Makefile.Embedded +++ b/Makefile.Embedded | |||
@@ -1,365 +1,368 @@ | |||
1 | export KDEPIMDIR = $(shell pwd) | 1 | export KDEPIMDIR = $(shell pwd) |
2 | 2 | ||
3 | export KDEPIM_VERSION=$(shell sed -e 's/.*\"\([0-9]*\.[0-9]*\.[0-9]*\).*/\1/' < version) | 3 | export KDEPIM_VERSION=$(shell sed -e 's/.*\"\([0-9]*\.[0-9]*\.[0-9]*\).*/\1/' < version) |
4 | 4 | ||
5 | ifeq ($(PLATFORM) , zaurus) | 5 | ifeq ($(PLATFORM) , zaurus) |
6 | BUILD_NO_LDAP_PLUGIN=1 | 6 | BUILD_NO_LDAP_PLUGIN=1 |
7 | endif | 7 | endif |
8 | 8 | ||
9 | ifneq ($(PLATFORM) , zaurus) | 9 | ifneq ($(PLATFORM) , zaurus) |
10 | BUILD_NO_SHARP_PLUGIN=1 | 10 | BUILD_NO_SHARP_PLUGIN=1 |
11 | endif | 11 | endif |
12 | 12 | ||
13 | #opie plugin is deprecated. The qtopia plugin handles the task from now on. | 13 | #opie plugin is deprecated. The qtopia plugin handles the task from now on. |
14 | BUILD_NO_OPIE_PLUGIN=1 | 14 | BUILD_NO_OPIE_PLUGIN=1 |
15 | 15 | ||
16 | SUBDIRS_MICROKDE = \ | 16 | SUBDIRS_MICROKDE = \ |
17 | libical/src/libical \ | 17 | libical/src/libical \ |
18 | libical/src/libicalss \ | 18 | libical/src/libicalss \ |
19 | qtcompat \ | 19 | qtcompat \ |
20 | microkde \ | 20 | microkde \ |
21 | libkcal \ | 21 | libkcal \ |
22 | libkdepim \ | 22 | libkdepim \ |
23 | kabc \ | 23 | kabc \ |
24 | kabc/formats/binary \ | 24 | kabc/formats/binary \ |
25 | kabc/plugins/file \ | 25 | kabc/plugins/file \ |
26 | kabc/plugins/dir \ | 26 | kabc/plugins/dir \ |
27 | korganizer \ | 27 | korganizer \ |
28 | kalarmd \ | 28 | kalarmd \ |
29 | kaddressbook | 29 | kaddressbook |
30 | 30 | ||
31 | SUBDIRS_QTOPIA_PLUGIN = \ | 31 | SUBDIRS_QTOPIA_PLUGIN = \ |
32 | kabc/plugins/qtopia | 32 | kabc/plugins/qtopia |
33 | 33 | ||
34 | SUBDIRS_OPIE_PLUGIN = \ | 34 | SUBDIRS_OPIE_PLUGIN = \ |
35 | kabc/plugins/opie | 35 | kabc/plugins/opie |
36 | 36 | ||
37 | SUBDIRS_SHARP_PLUGIN = \ | 37 | SUBDIRS_SHARP_PLUGIN = \ |
38 | kabc/plugins/sharpdtm | 38 | kabc/plugins/sharpdtm |
39 | 39 | ||
40 | SUBDIRS_LDAP_PLUGIN = \ | 40 | SUBDIRS_LDAP_PLUGIN = \ |
41 | kabc/plugins/ldap | 41 | kabc/plugins/ldap |
42 | 42 | ||
43 | SUBDIRS_MICROMAIL = \ | 43 | SUBDIRS_MICROMAIL = \ |
44 | kmicromail/libetpan \ | 44 | kmicromail/libetpan \ |
45 | kmicromail/libmailwrapper \ | 45 | kmicromail/libmailwrapper \ |
46 | kmicromail | 46 | kmicromail |
47 | 47 | ||
48 | SUBDIRS_GAMMU = \ | 48 | SUBDIRS_GAMMU = \ |
49 | gammu/emb/common \ | 49 | gammu/emb/common \ |
50 | gammu/emb/gammu | 50 | gammu/emb/gammu |
51 | 51 | ||
52 | SUBDIRS_PWMANAGER = \ | 52 | SUBDIRS_PWMANAGER = \ |
53 | pwmanager/libcrypt/mpi \ | 53 | pwmanager/libcrypt/mpi \ |
54 | pwmanager/libcrypt/error \ | 54 | pwmanager/libcrypt/error \ |
55 | pwmanager/libcrypt/cipher \ | 55 | pwmanager/libcrypt/cipher \ |
56 | pwmanager/libcrypt/zlib \ | 56 | pwmanager/libcrypt/zlib \ |
57 | pwmanager/pwmanager | 57 | pwmanager/pwmanager |
58 | 58 | ||
59 | SUBDIRS = \ | 59 | SUBDIRS = \ |
60 | $(SUBDIRS_MICROKDE) \ | 60 | $(SUBDIRS_MICROKDE) \ |
61 | $(SUBDIRS_QTOPIA_PLUGIN) \ | 61 | $(SUBDIRS_QTOPIA_PLUGIN) \ |
62 | $(SUBDIRS_OPIE_PLUGIN) \ | 62 | $(SUBDIRS_OPIE_PLUGIN) \ |
63 | $(SUBDIRS_SHARP_PLUGIN) \ | 63 | $(SUBDIRS_SHARP_PLUGIN) \ |
64 | $(SUBDIRS_LDAP_PLUGIN) \ | 64 | $(SUBDIRS_LDAP_PLUGIN) \ |
65 | $(SUBDIRS_MICROMAIL) \ | 65 | $(SUBDIRS_MICROMAIL) \ |
66 | $(SUBDIRS_GAMMU) \ | 66 | $(SUBDIRS_GAMMU) \ |
67 | $(SUBDIRS_PWMANAGER) | 67 | $(SUBDIRS_PWMANAGER) |
68 | 68 | ||
69 | 69 | ||
70 | all: build_microkde \ | 70 | all: build_microkde \ |
71 | build_qtopia_plugin \ | 71 | build_qtopia_plugin \ |
72 | build_opie_plugin \ | 72 | build_opie_plugin \ |
73 | build_sharp_plugin \ | 73 | build_sharp_plugin \ |
74 | build_ldap_plugin \ | 74 | build_ldap_plugin \ |
75 | build_micromail \ | 75 | build_micromail \ |
76 | build_gammu \ | 76 | build_gammu \ |
77 | build_pwmanager | 77 | build_pwmanager |
78 | 78 | ||
79 | 79 | ||
80 | build_microkde: variable_test tmake | 80 | build_microkde: variable_test tmake |
81 | for i in $(SUBDIRS_MICROKDE); do pushd $$i; \ | 81 | for i in $(SUBDIRS_MICROKDE); do pushd $$i; \ |
82 | make -f Makefile$(PLATFORM) || exit 1; popd; \ | 82 | make -f Makefile$(PLATFORM) || exit 1; popd; \ |
83 | done | 83 | done |
84 | 84 | ||
85 | build_qtopia_plugin: build_microkde | 85 | build_qtopia_plugin: build_microkde |
86 | ifdef BUILD_NO_QTOPIA_PLUGIN | 86 | ifdef BUILD_NO_QTOPIA_PLUGIN |
87 | @echo == qtopia plugin not build. | 87 | @echo == qtopia plugin not build. |
88 | else | 88 | else |
89 | for i in $(SUBDIRS_QTOPIA_PLUGIN); do pushd $$i; \ | 89 | for i in $(SUBDIRS_QTOPIA_PLUGIN); do pushd $$i; \ |
90 | make -f Makefile$(PLATFORM) || exit 1; popd; \ | 90 | make -f Makefile$(PLATFORM) || exit 1; popd; \ |
91 | done | 91 | done |
92 | endif | 92 | endif |
93 | 93 | ||
94 | build_opie_plugin: build_microkde | 94 | build_opie_plugin: build_microkde |
95 | ifdef BUILD_NO_OPIE_PLUGIN | 95 | ifdef BUILD_NO_OPIE_PLUGIN |
96 | @echo == opie plugin not build. | 96 | @echo == opie plugin not build. |
97 | else | 97 | else |
98 | for i in $(SUBDIRS_OPIE_PLUGIN); do pushd $$i; \ | 98 | for i in $(SUBDIRS_OPIE_PLUGIN); do pushd $$i; \ |
99 | make -f Makefile$(PLATFORM) || exit 1; popd; \ | 99 | make -f Makefile$(PLATFORM) || exit 1; popd; \ |
100 | done | 100 | done |
101 | endif | 101 | endif |
102 | 102 | ||
103 | build_sharp_plugin: build_microkde | 103 | build_sharp_plugin: build_microkde |
104 | ifdef BUILD_NO_SHARP_PLUGIN | 104 | ifdef BUILD_NO_SHARP_PLUGIN |
105 | @echo == ldap plugin not build. | 105 | @echo == ldap plugin not build. |
106 | else | 106 | else |
107 | for i in $(SUBDIRS_SHARP_PLUGIN); do pushd $$i; \ | 107 | for i in $(SUBDIRS_SHARP_PLUGIN); do pushd $$i; \ |
108 | make -f Makefile$(PLATFORM) || exit 1; popd; \ | 108 | make -f Makefile$(PLATFORM) || exit 1; popd; \ |
109 | done | 109 | done |
110 | endif | 110 | endif |
111 | 111 | ||
112 | build_ldap_plugin: build_microkde | 112 | build_ldap_plugin: build_microkde |
113 | ifdef BUILD_NO_LDAP_PLUGIN | 113 | ifdef BUILD_NO_LDAP_PLUGIN |
114 | @echo == ldap plugin not build. | 114 | @echo == ldap plugin not build. |
115 | else | 115 | else |
116 | for i in $(SUBDIRS_LDAP_PLUGIN); do pushd $$i; \ | 116 | for i in $(SUBDIRS_LDAP_PLUGIN); do pushd $$i; \ |
117 | make -f Makefile$(PLATFORM) || exit 1; popd; \ | 117 | make -f Makefile$(PLATFORM) || exit 1; popd; \ |
118 | done | 118 | done |
119 | endif | 119 | endif |
120 | 120 | ||
121 | 121 | ||
122 | build_micromail: build_microkde | 122 | build_micromail: build_microkde |
123 | ifdef BUILD_NO_MICROMAIL | 123 | ifdef BUILD_NO_MICROMAIL |
124 | @echo == kmicromail not build. | 124 | @echo == kmicromail not build. |
125 | else | 125 | else |
126 | for i in $(SUBDIRS_MICROMAIL); do pushd $$i; \ | 126 | for i in $(SUBDIRS_MICROMAIL); do pushd $$i; \ |
127 | make -f Makefile$(PLATFORM) || exit 1; popd; \ | 127 | make -f Makefile$(PLATFORM) || exit 1; popd; \ |
128 | done | 128 | done |
129 | endif | 129 | endif |
130 | 130 | ||
131 | build_gammu: variable_test tmake | 131 | build_gammu: variable_test tmake |
132 | ifdef BUILD_NO_GAMMU | 132 | ifdef BUILD_NO_GAMMU |
133 | @echo == gammu not build. | 133 | @echo == gammu not build. |
134 | else | 134 | else |
135 | for i in $(SUBDIRS_GAMMU); do pushd $$i; \ | 135 | for i in $(SUBDIRS_GAMMU); do pushd $$i; \ |
136 | make -f Makefile$(PLATFORM) || exit 1; popd; \ | 136 | make -f Makefile$(PLATFORM) || exit 1; popd; \ |
137 | done | 137 | done |
138 | endif | 138 | endif |
139 | 139 | ||
140 | build_pwmanager: build_microkde | 140 | build_pwmanager: build_microkde |
141 | ifdef BUILD_NO_PWMANAGER | 141 | ifdef BUILD_NO_PWMANAGER |
142 | @echo == pwmanager not build. | 142 | @echo == pwmanager not build. |
143 | else | 143 | else |
144 | for i in $(SUBDIRS_PWMANAGER); do pushd $$i; \ | 144 | for i in $(SUBDIRS_PWMANAGER); do pushd $$i; \ |
145 | make -f Makefile$(PLATFORM) || exit 1; popd; \ | 145 | make -f Makefile$(PLATFORM) || exit 1; popd; \ |
146 | done | 146 | done |
147 | endif | 147 | endif |
148 | 148 | ||
149 | 149 | ||
150 | variable_info: | 150 | variable_info: |
151 | @echo -------------------------------------- | 151 | @echo -------------------------------------- |
152 | @echo KDEPIM buildsystem, variableinfo... | 152 | @echo KDEPIM buildsystem, variableinfo... |
153 | @echo KDEPIMDIR=$(KDEPIMDIR) | 153 | @echo KDEPIMDIR=$(KDEPIMDIR) |
154 | @echo QTDIR=$(QTDIR) | 154 | @echo QTDIR=$(QTDIR) |
155 | @echo QPEDIR=$(QPEDIR) | 155 | @echo QPEDIR=$(QPEDIR) |
156 | @echo OPIEDIR=$(OPIEDIR) | 156 | @echo OPIEDIR=$(OPIEDIR) |
157 | @echo PLATFORM=$(PLATFORM) | 157 | @echo PLATFORM=$(PLATFORM) |
158 | @echo RELEASE_DEBUG=$(RELEASE_DEBUG) | 158 | @echo RELEASE_DEBUG=$(RELEASE_DEBUG) |
159 | @echo BUILD_NO_MICROMAIL=$(BUILD_NO_MICROMAIL) | 159 | @echo BUILD_NO_MICROMAIL=$(BUILD_NO_MICROMAIL) |
160 | @echo BUILD_NO_LDAP_PLUGIN=$(BUILD_NO_LDAP_PLUGIN) | 160 | @echo BUILD_NO_LDAP_PLUGIN=$(BUILD_NO_LDAP_PLUGIN) |
161 | @echo BUILD_NO_OPIE_PLUGIN=$(BUILD_NO_OPIE_PLUGIN) | 161 | @echo BUILD_NO_OPIE_PLUGIN=$(BUILD_NO_OPIE_PLUGIN) |
162 | @echo BUILD_NO_QTOPIA_PLUGIN=$(BUILD_NO_QTOPIA_PLUGIN) | 162 | @echo BUILD_NO_QTOPIA_PLUGIN=$(BUILD_NO_QTOPIA_PLUGIN) |
163 | @echo BUILD_NO_SHARP_PLUGIN=$(BUILD_NO_SHARP_PLUGIN) | 163 | @echo BUILD_NO_SHARP_PLUGIN=$(BUILD_NO_SHARP_PLUGIN) |
164 | ifndef BUILD_NO_SHARP_PLUGIN | 164 | ifndef BUILD_NO_SHARP_PLUGIN |
165 | @echo SHARPDTMSDK=$(SHARPDTMSDK) | 165 | @echo SHARPDTMSDK=$(SHARPDTMSDK) |
166 | endif | 166 | endif |
167 | @echo BUILD_NO_GAMMU=$(BUILD_NO_GAMMU) | 167 | @echo BUILD_NO_GAMMU=$(BUILD_NO_GAMMU) |
168 | @echo BUILD_NO_PWMANAGER=$(BUILD_NO_PWMANAGER) | 168 | @echo BUILD_NO_PWMANAGER=$(BUILD_NO_PWMANAGER) |
169 | @echo -------------------------------------- | 169 | @echo -------------------------------------- |
170 | 170 | ||
171 | variable_test: variable_info | 171 | variable_test: variable_info |
172 | @echo KDEPIM buildsystem, variablecheck... | 172 | @echo KDEPIM buildsystem, variablecheck... |
173 | ifndef KDEPIMDIR | 173 | ifndef KDEPIMDIR |
174 | @echo KDEPIMDIR is not defined. | 174 | @echo KDEPIMDIR is not defined. |
175 | $(error KDEPIMDIR is not defined) | 175 | $(error KDEPIMDIR is not defined) |
176 | endif | 176 | endif |
177 | ifndef PLATFORM | 177 | ifndef PLATFORM |
178 | @echo PLATFORM is not defined. | 178 | @echo PLATFORM is not defined. |
179 | $(error PLATFORM is not defined) | 179 | $(error PLATFORM is not defined) |
180 | endif | 180 | endif |
181 | ifdef BUILD_NO_LDAP_PLUGIN | 181 | ifdef BUILD_NO_LDAP_PLUGIN |
182 | @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) |
183 | endif | 183 | endif |
184 | ifdef BUILD_NO_OPIE_PLUGIN | 184 | ifdef BUILD_NO_OPIE_PLUGIN |
185 | @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) |
186 | endif | 186 | endif |
187 | ifdef BUILD_NO_QTOPIA_PLUGIN | 187 | ifdef BUILD_NO_QTOPIA_PLUGIN |
188 | @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) |
189 | endif | 189 | endif |
190 | ifdef BUILD_NO_MICROMAIL | 190 | ifdef BUILD_NO_MICROMAIL |
191 | @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) |
192 | endif | 192 | endif |
193 | ifdef BUILD_NO_SHARP_PLUGIN | 193 | ifdef BUILD_NO_SHARP_PLUGIN |
194 | @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) |
195 | else | 195 | else |
196 | ifndef SHARPDTMSDK | 196 | ifndef SHARPDTMSDK |
197 | @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) |
198 | $(error SHARPDTMSDK is not defined) | 198 | $(error SHARPDTMSDK is not defined) |
199 | endif | 199 | endif |
200 | endif | 200 | endif |
201 | ifdef BUILD_NO_GAMMU | 201 | ifdef BUILD_NO_GAMMU |
202 | @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) |
203 | endif | 203 | endif |
204 | ifdef BUILD_NO_PWMANAGER | 204 | ifdef BUILD_NO_PWMANAGER |
205 | @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) |
206 | endif | 206 | endif |
207 | @echo -------------------------------------- | 207 | @echo -------------------------------------- |
208 | 208 | ||
209 | 209 | ||
210 | objects: | 210 | objects: |
211 | for i in $(SUBDIRS); do mkdir -p $$i/obj/$(PLATFORM); done | 211 | for i in $(SUBDIRS); do mkdir -p $$i/obj/$(PLATFORM); done |
212 | for i in $(SUBDIRS); do mkdir -p $$i/moc/$(PLATFORM); done | 212 | for i in $(SUBDIRS); do mkdir -p $$i/moc/$(PLATFORM); done |
213 | mkdir -p libical/lib/$(PLATFORM) | 213 | mkdir -p libical/lib/$(PLATFORM) |
214 | mkdir -p pwmanager/libcrypt/$(PLATFORM) | 214 | mkdir -p pwmanager/libcrypt/$(PLATFORM) |
215 | 215 | ||
216 | clean: | 216 | clean: |
217 | rm -rf libical/lib/$(PLATFORM)/*; | 217 | rm -rf libical/lib/$(PLATFORM)/*; |
218 | rm -rf pwmanager/libcrypt/$(PLATFORM)/*; | 218 | rm -rf pwmanager/libcrypt/$(PLATFORM)/*; |
219 | for i in $(SUBDIRS); do pushd $$i; make clean; rm -f *~;\ | 219 | for i in $(SUBDIRS); do pushd $$i; make clean; rm -f *~;\ |
220 | rm -f obj/$(PLATFORM)/*; rm -f moc/$(PLATFORM)/*; rm Makefile$(PLATFORM); popd; \ | 220 | rm -f obj/$(PLATFORM)/*; rm -f moc/$(PLATFORM)/*; rm Makefile$(PLATFORM); popd; \ |
221 | done | 221 | done |
222 | 222 | ||
223 | install: | 223 | install: |
224 | 224 | ||
225 | cd bin/kdepim; make install | 225 | cd bin/kdepim; make install |
226 | cp -r Pim $(QPEDIR)/apps | 226 | cp -r Pim $(QPEDIR)/apps |
227 | cp db2file/db2file $(QPEDIR)/bin/db2file | 227 | cp db2file/db2file $(QPEDIR)/bin/db2file |
228 | cp korganizer/korganizer.desktop $(QPEDIR)/apps/Pim/korganizer.desktop | 228 | cp korganizer/korganizer.desktop $(QPEDIR)/apps/Pim/korganizer.desktop |
229 | cp kaddressbook/kaddressbook.desktop $(QPEDIR)/apps/Pim/kaddressbook.desktop | 229 | cp kaddressbook/kaddressbook.desktop $(QPEDIR)/apps/Pim/kaddressbook.desktop |
230 | cp kmicromail/kmicromail.desktop $(QPEDIR)/apps/Pim/kopiemail.desktop | 230 | cp kmicromail/kmicromail.desktop $(QPEDIR)/apps/Pim/kopiemail.desktop |
231 | cp pwmanager/pwmanager/pwmanager.desktop $(QPEDIR)/apps/Pim/pwmanager.desktop | 231 | cp pwmanager/pwmanager/pwmanager.desktop $(QPEDIR)/apps/Pim/pwmanager.desktop |
232 | 232 | ||
233 | dist: | 233 | dist: |
234 | @echo Dont forget to do "make install" before "make dist" | 234 | @echo Dont forget to do "make install" before "make dist" |
235 | rm -f *arm.ipk | 235 | rm -f *arm.ipk |
236 | rm -f *~ | 236 | rm -f *~ |
237 | cd ..; tar czf kdepimpi-$(KDEPIM_VERSION).tar.gz --exclude=obj --exclude=moc --exclude=CVS --exclude=Makefilezaurus --exclude=Makefileqtopia kdepim | 237 | cd ..; tar czf kdepimpi-$(KDEPIM_VERSION).tar.gz --exclude=obj --exclude=moc --exclude=CVS --exclude=Makefilezaurus --exclude=Makefileqtopia kdepim |
238 | mkipks kmicrokdelibs.control | 238 | mkipks kmicrokdelibs.control |
239 | mkipks korganizer.control | 239 | mkipks korganizer.control |
240 | mkipks kaddressbook.control | 240 | mkipks kaddressbook.control |
241 | ifndef BUILD_NO_MICROMAIL | 241 | ifndef BUILD_NO_MICROMAIL |
242 | mkipks kopiemail.control | 242 | mkipks kopiemail.control |
243 | endif | 243 | endif |
244 | ifndef BUILD_NO_SHARP_PLUGIN | ||
245 | mkipks ksharpPIM-DTMaccess.control | ||
246 | endif | ||
244 | mkipks korganizer-alarm.control | 247 | mkipks korganizer-alarm.control |
245 | ifndef BUILD_NO_GAMMU | 248 | ifndef BUILD_NO_GAMMU |
246 | mkipks phoneaccess.control | 249 | mkipks kmobilephoneaccess.control |
247 | endif | 250 | endif |
248 | ifndef BUILD_NO_PWMANAGER | 251 | ifndef BUILD_NO_PWMANAGER |
249 | mkipks pwmanager.control | 252 | mkipks pwmanager.control |
250 | endif | 253 | endif |
251 | mkipks pim_TAB_icon.control | 254 | mkipks pimTABicon.control |
252 | 255 | ||
253 | tmake: objects \ | 256 | tmake: objects \ |
254 | qtcompat/Makefile$(PLATFORM) \ | 257 | qtcompat/Makefile$(PLATFORM) \ |
255 | microkde/Makefile$(PLATFORM) \ | 258 | microkde/Makefile$(PLATFORM) \ |
256 | libkcal/Makefile$(PLATFORM) \ | 259 | libkcal/Makefile$(PLATFORM) \ |
257 | libkdepim/Makefile$(PLATFORM) \ | 260 | libkdepim/Makefile$(PLATFORM) \ |
258 | korganizer/Makefile$(PLATFORM) \ | 261 | korganizer/Makefile$(PLATFORM) \ |
259 | kalarmd/Makefile$(PLATFORM) \ | 262 | kalarmd/Makefile$(PLATFORM) \ |
260 | libical/src/libical/Makefile$(PLATFORM) \ | 263 | libical/src/libical/Makefile$(PLATFORM) \ |
261 | libical/src/libicalss/Makefile$(PLATFORM) \ | 264 | libical/src/libicalss/Makefile$(PLATFORM) \ |
262 | kabc/Makefile$(PLATFORM) \ | 265 | kabc/Makefile$(PLATFORM) \ |
263 | kabc/formats/binary/Makefile$(PLATFORM) \ | 266 | kabc/formats/binary/Makefile$(PLATFORM) \ |
264 | kabc/plugins/file/Makefile$(PLATFORM) \ | 267 | kabc/plugins/file/Makefile$(PLATFORM) \ |
265 | kabc/plugins/dir/Makefile$(PLATFORM) \ | 268 | kabc/plugins/dir/Makefile$(PLATFORM) \ |
266 | kabc/plugins/ldap/Makefile$(PLATFORM) \ | 269 | kabc/plugins/ldap/Makefile$(PLATFORM) \ |
267 | kabc/plugins/opie/Makefile$(PLATFORM) \ | 270 | kabc/plugins/opie/Makefile$(PLATFORM) \ |
268 | kabc/plugins/qtopia/Makefile$(PLATFORM) \ | 271 | kabc/plugins/qtopia/Makefile$(PLATFORM) \ |
269 | kabc/plugins/sharpdtm/Makefile$(PLATFORM) \ | 272 | kabc/plugins/sharpdtm/Makefile$(PLATFORM) \ |
270 | kaddressbook/Makefile$(PLATFORM) \ | 273 | kaddressbook/Makefile$(PLATFORM) \ |
271 | kmicromail/Makefile$(PLATFORM) \ | 274 | kmicromail/Makefile$(PLATFORM) \ |
272 | kmicromail/libetpan/Makefile$(PLATFORM) \ | 275 | kmicromail/libetpan/Makefile$(PLATFORM) \ |
273 | kmicromail/libmailwrapper/Makefile$(PLATFORM) \ | 276 | kmicromail/libmailwrapper/Makefile$(PLATFORM) \ |
274 | gammu/emb/common/Makefile$(PLATFORM) \ | 277 | gammu/emb/common/Makefile$(PLATFORM) \ |
275 | gammu/emb/gammu/Makefile$(PLATFORM) \ | 278 | gammu/emb/gammu/Makefile$(PLATFORM) \ |
276 | pwmanager/pwmanager/Makefile$(PLATFORM) \ | 279 | pwmanager/pwmanager/Makefile$(PLATFORM) \ |
277 | pwmanager/libcrypt/mpi/Makefile$(PLATFORM) \ | 280 | pwmanager/libcrypt/mpi/Makefile$(PLATFORM) \ |
278 | pwmanager/libcrypt/error/Makefile$(PLATFORM) \ | 281 | pwmanager/libcrypt/error/Makefile$(PLATFORM) \ |
279 | pwmanager/libcrypt/cipher/Makefile$(PLATFORM) \ | 282 | pwmanager/libcrypt/cipher/Makefile$(PLATFORM) \ |
280 | pwmanager/libcrypt/zlib/Makefile$(PLATFORM) | 283 | pwmanager/libcrypt/zlib/Makefile$(PLATFORM) |
281 | 284 | ||
282 | qtcompat/Makefile$(PLATFORM): qtcompat/qtcompat.pro | 285 | qtcompat/Makefile$(PLATFORM): qtcompat/qtcompat.pro |
283 | cd qtcompat; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" qtcompat.pro -o Makefile$(PLATFORM) | 286 | cd qtcompat; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" qtcompat.pro -o Makefile$(PLATFORM) |
284 | 287 | ||
285 | microkde/Makefile$(PLATFORM): microkde/microkdeE.pro | 288 | microkde/Makefile$(PLATFORM): microkde/microkdeE.pro |
286 | cd microkde; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" microkdeE.pro -o Makefile$(PLATFORM) | 289 | cd microkde; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" microkdeE.pro -o Makefile$(PLATFORM) |
287 | 290 | ||
288 | libkcal/Makefile$(PLATFORM): libkcal/libkcalE.pro | 291 | libkcal/Makefile$(PLATFORM): libkcal/libkcalE.pro |
289 | cd libkcal; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" libkcalE.pro -o Makefile$(PLATFORM) | 292 | cd libkcal; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" libkcalE.pro -o Makefile$(PLATFORM) |
290 | 293 | ||
291 | 294 | ||
292 | libkdepim/Makefile$(PLATFORM): libkdepim/libkdepimE.pro | 295 | libkdepim/Makefile$(PLATFORM): libkdepim/libkdepimE.pro |
293 | cd libkdepim; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" libkdepimE.pro -o Makefile$(PLATFORM) | 296 | cd libkdepim; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" libkdepimE.pro -o Makefile$(PLATFORM) |
294 | 297 | ||
295 | kalarmd/Makefile$(PLATFORM): kalarmd/kalarmdE.pro | 298 | kalarmd/Makefile$(PLATFORM): kalarmd/kalarmdE.pro |
296 | cd kalarmd; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" kalarmdE.pro -o Makefile$(PLATFORM) | 299 | cd kalarmd; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" kalarmdE.pro -o Makefile$(PLATFORM) |
297 | 300 | ||
298 | korganizer/Makefile$(PLATFORM): korganizer/korganizerE.pro | 301 | korganizer/Makefile$(PLATFORM): korganizer/korganizerE.pro |
299 | cd korganizer; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" korganizerE.pro -o Makefile$(PLATFORM) | 302 | cd korganizer; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" korganizerE.pro -o Makefile$(PLATFORM) |
300 | 303 | ||
301 | libical/src/libical/Makefile$(PLATFORM): libical/src/libical/libicalE.pro | 304 | libical/src/libical/Makefile$(PLATFORM): libical/src/libical/libicalE.pro |
302 | cd libical/src/libical; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" libicalE.pro -o Makefile$(PLATFORM) | 305 | cd libical/src/libical; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" libicalE.pro -o Makefile$(PLATFORM) |
303 | 306 | ||
304 | libical/src/libicalss/Makefile$(PLATFORM): libical/src/libicalss/libicalssE.pro | 307 | libical/src/libicalss/Makefile$(PLATFORM): libical/src/libicalss/libicalssE.pro |
305 | cd libical/src/libicalss; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" libicalssE.pro -o Makefile$(PLATFORM) | 308 | cd libical/src/libicalss; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" libicalssE.pro -o Makefile$(PLATFORM) |
306 | 309 | ||
307 | kabc/Makefile$(PLATFORM): kabc/kabcE.pro | 310 | kabc/Makefile$(PLATFORM): kabc/kabcE.pro |
308 | cd kabc; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" kabcE.pro -o Makefile$(PLATFORM) | 311 | cd kabc; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" kabcE.pro -o Makefile$(PLATFORM) |
309 | 312 | ||
310 | kabc/formats/binary/Makefile$(PLATFORM): kabc/formats/binary/kabcformat_binaryE.pro | 313 | kabc/formats/binary/Makefile$(PLATFORM): kabc/formats/binary/kabcformat_binaryE.pro |
311 | cd kabc/formats/binary; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" kabcformat_binaryE.pro -o Makefile$(PLATFORM) | 314 | cd kabc/formats/binary; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" kabcformat_binaryE.pro -o Makefile$(PLATFORM) |
312 | 315 | ||
313 | kabc/plugins/file/Makefile$(PLATFORM): kabc/plugins/file/fileE.pro | 316 | kabc/plugins/file/Makefile$(PLATFORM): kabc/plugins/file/fileE.pro |
314 | cd kabc/plugins/file; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" fileE.pro -o Makefile$(PLATFORM) | 317 | cd kabc/plugins/file; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" fileE.pro -o Makefile$(PLATFORM) |
315 | 318 | ||
316 | kabc/plugins/dir/Makefile$(PLATFORM): kabc/plugins/dir/dirE.pro | 319 | kabc/plugins/dir/Makefile$(PLATFORM): kabc/plugins/dir/dirE.pro |
317 | cd kabc/plugins/dir; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" dirE.pro -o Makefile$(PLATFORM) | 320 | cd kabc/plugins/dir; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" dirE.pro -o Makefile$(PLATFORM) |
318 | 321 | ||
319 | kabc/plugins/ldap/Makefile$(PLATFORM): kabc/plugins/ldap/ldapE.pro | 322 | kabc/plugins/ldap/Makefile$(PLATFORM): kabc/plugins/ldap/ldapE.pro |
320 | cd kabc/plugins/ldap; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" ldapE.pro -o Makefile$(PLATFORM) | 323 | cd kabc/plugins/ldap; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" ldapE.pro -o Makefile$(PLATFORM) |
321 | 324 | ||
322 | kabc/plugins/opie/Makefile$(PLATFORM): kabc/plugins/opie/opieE.pro | 325 | kabc/plugins/opie/Makefile$(PLATFORM): kabc/plugins/opie/opieE.pro |
323 | cd kabc/plugins/opie; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" opieE.pro -o Makefile$(PLATFORM) | 326 | cd kabc/plugins/opie; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" opieE.pro -o Makefile$(PLATFORM) |
324 | 327 | ||
325 | kabc/plugins/qtopia/Makefile$(PLATFORM): kabc/plugins/qtopia/qtopiaE.pro | 328 | kabc/plugins/qtopia/Makefile$(PLATFORM): kabc/plugins/qtopia/qtopiaE.pro |
326 | cd kabc/plugins/qtopia; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" qtopiaE.pro -o Makefile$(PLATFORM) | 329 | cd kabc/plugins/qtopia; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" qtopiaE.pro -o Makefile$(PLATFORM) |
327 | 330 | ||
328 | kabc/plugins/sharpdtm/Makefile$(PLATFORM): kabc/plugins/sharpdtm/sharpdtmE.pro | 331 | kabc/plugins/sharpdtm/Makefile$(PLATFORM): kabc/plugins/sharpdtm/sharpdtmE.pro |
329 | cd kabc/plugins/sharpdtm; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" sharpdtmE.pro -o Makefile$(PLATFORM) | 332 | cd kabc/plugins/sharpdtm; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" sharpdtmE.pro -o Makefile$(PLATFORM) |
330 | 333 | ||
331 | kaddressbook/Makefile$(PLATFORM): kaddressbook/kaddressbookE.pro | 334 | kaddressbook/Makefile$(PLATFORM): kaddressbook/kaddressbookE.pro |
332 | cd kaddressbook; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" kaddressbookE.pro -o Makefile$(PLATFORM) | 335 | cd kaddressbook; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" kaddressbookE.pro -o Makefile$(PLATFORM) |
333 | 336 | ||
334 | kmicromail/Makefile$(PLATFORM): kmicromail/kmicromailE.pro | 337 | kmicromail/Makefile$(PLATFORM): kmicromail/kmicromailE.pro |
335 | cd kmicromail; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" kmicromailE.pro -o Makefile$(PLATFORM) | 338 | cd kmicromail; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" kmicromailE.pro -o Makefile$(PLATFORM) |
336 | 339 | ||
337 | kmicromail/libetpan/Makefile$(PLATFORM): kmicromail/libetpan/libetpanE.pro | 340 | kmicromail/libetpan/Makefile$(PLATFORM): kmicromail/libetpan/libetpanE.pro |
338 | cd kmicromail/libetpan; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" libetpanE.pro -o Makefile$(PLATFORM) | 341 | cd kmicromail/libetpan; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" libetpanE.pro -o Makefile$(PLATFORM) |
339 | 342 | ||
340 | kmicromail/libmailwrapper/Makefile$(PLATFORM): kmicromail/libmailwrapper/libmailwrapperE.pro | 343 | kmicromail/libmailwrapper/Makefile$(PLATFORM): kmicromail/libmailwrapper/libmailwrapperE.pro |
341 | cd kmicromail/libmailwrapper; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" libmailwrapperE.pro -o Makefile$(PLATFORM) | 344 | cd kmicromail/libmailwrapper; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" libmailwrapperE.pro -o Makefile$(PLATFORM) |
342 | 345 | ||
343 | gammu/emb/common/Makefile$(PLATFORM): gammu/emb/common/commonE.pro | 346 | gammu/emb/common/Makefile$(PLATFORM): gammu/emb/common/commonE.pro |
344 | cd gammu/emb/common; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" commonE.pro -o Makefile$(PLATFORM) | 347 | cd gammu/emb/common; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" commonE.pro -o Makefile$(PLATFORM) |
345 | 348 | ||
346 | gammu/emb/gammu/Makefile$(PLATFORM): gammu/emb/gammu/gammuE.pro | 349 | gammu/emb/gammu/Makefile$(PLATFORM): gammu/emb/gammu/gammuE.pro |
347 | cd gammu/emb/gammu; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" gammuE.pro -o Makefile$(PLATFORM) | 350 | cd gammu/emb/gammu; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" gammuE.pro -o Makefile$(PLATFORM) |
348 | 351 | ||
349 | pwmanager/pwmanager/Makefile$(PLATFORM): pwmanager/pwmanager/pwmanagerE.pro | 352 | pwmanager/pwmanager/Makefile$(PLATFORM): pwmanager/pwmanager/pwmanagerE.pro |
350 | cd pwmanager/pwmanager; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" pwmanagerE.pro -o Makefile$(PLATFORM) | 353 | cd pwmanager/pwmanager; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" pwmanagerE.pro -o Makefile$(PLATFORM) |
351 | 354 | ||
352 | 355 | ||
353 | pwmanager/libcrypt/mpi/Makefile$(PLATFORM): pwmanager/libcrypt/mpi/mpi.pro | 356 | pwmanager/libcrypt/mpi/Makefile$(PLATFORM): pwmanager/libcrypt/mpi/mpi.pro |
354 | cd pwmanager/libcrypt/mpi;tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" mpi.pro -o Makefile$(PLATFORM) | 357 | cd pwmanager/libcrypt/mpi;tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" mpi.pro -o Makefile$(PLATFORM) |
355 | 358 | ||
356 | pwmanager/libcrypt/error/Makefile$(PLATFORM): pwmanager/libcrypt/error/error.pro | 359 | pwmanager/libcrypt/error/Makefile$(PLATFORM): pwmanager/libcrypt/error/error.pro |
357 | cd pwmanager/libcrypt/error;tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" error.pro -o Makefile$(PLATFORM) | 360 | cd pwmanager/libcrypt/error;tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" error.pro -o Makefile$(PLATFORM) |
358 | 361 | ||
359 | pwmanager/libcrypt/cipher/Makefile$(PLATFORM): pwmanager/libcrypt/cipher/cipher.pro | 362 | pwmanager/libcrypt/cipher/Makefile$(PLATFORM): pwmanager/libcrypt/cipher/cipher.pro |
360 | cd pwmanager/libcrypt/cipher;tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" cipher.pro -o Makefile$(PLATFORM) | 363 | cd pwmanager/libcrypt/cipher;tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" cipher.pro -o Makefile$(PLATFORM) |
361 | 364 | ||
362 | pwmanager/libcrypt/zlib/Makefile$(PLATFORM): pwmanager/libcrypt/zlib/zlib.pro | 365 | pwmanager/libcrypt/zlib/Makefile$(PLATFORM): pwmanager/libcrypt/zlib/zlib.pro |
363 | cd pwmanager/libcrypt/zlib;tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" zlib.pro -o Makefile$(PLATFORM) | 366 | cd pwmanager/libcrypt/zlib;tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" zlib.pro -o Makefile$(PLATFORM) |
364 | 367 | ||
365 | 368 | ||