|
diff --git a/Makefile b/Makefile index 1f9507f..5a51127 100644 --- a/ Makefile+++ b/ Makefile |
|
@@ -127,225 +127,235 @@ build_micromail: build_microkde |
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 | pac: |
| |
224 | make |
| |
225 | make install |
| |
226 | make dist |
223 | install: |
227 | install: |
224 | |
228 | |
225 | cd bin/kdepim; make install |
229 | cd bin/kdepim; make install |
226 | cp -r Pim $(QPEDIR)/apps |
230 | cp -r Pim $(QPEDIR)/apps |
227 | cp db2file/db2file $(QPEDIR)/bin/db2file |
231 | cp db2file/db2file $(QPEDIR)/bin/db2file |
228 | cp korganizer/korganizer.desktop $(QPEDIR)/apps/Pim/korganizer.desktop |
232 | cp korganizer/korganizer.desktop $(QPEDIR)/apps/Pim/korganizer.desktop |
229 | cp kaddressbook/kaddressbook.desktop $(QPEDIR)/apps/Pim/kaddressbook.desktop |
233 | cp kaddressbook/kaddressbook.desktop $(QPEDIR)/apps/Pim/kaddressbook.desktop |
230 | cp kmicromail/kmicromail.desktop $(QPEDIR)/apps/Pim/kopiemail.desktop |
234 | cp kmicromail/kmicromail.desktop $(QPEDIR)/apps/Pim/kopiemail.desktop |
231 | cp pwmanager/pwmanager/pwmanager.desktop $(QPEDIR)/apps/Pim/pwmanager.desktop |
235 | cp pwmanager/pwmanager/pwmanager.desktop $(QPEDIR)/apps/Pim/pwmanager.desktop |
232 | |
236 | |
233 | dist: |
237 | dist: |
234 | @echo Dont forget to do "make install" before "make dist" |
238 | @echo Dont forget to do "make install" before "make dist" |
235 | rm -f *arm.ipk |
239 | rm -f *arm.ipk |
| |
240 | rm -f *ipk.zip |
| |
241 | rm -f ../new_$(KDEPIM_VERSION)/* |
236 | rm -f *~ |
242 | rm -f *~ |
| |
243 | cd ..;mkdir -p new_$(KDEPIM_VERSION) |
237 | cd ..; tar czf kdepimpi-$(KDEPIM_VERSION).tar.gz --exclude=obj --exclude=moc --exclude=CVS --exclude=Makefilezaurus --exclude=Makefileqtopia kdepim |
244 | cd ..; tar czf kdepimpi-$(KDEPIM_VERSION).tar.gz --exclude=obj --exclude=moc --exclude=CVS --exclude=Makefilezaurus --exclude=Makefileqtopia kdepim |
238 | mkipks kmicrokdelibs.control |
245 | mkipks kmicrokdelibs.control |
239 | mkipks korganizer.control |
246 | mkipks korganizer.control |
240 | mkipks kaddressbook.control |
247 | mkipks kaddressbook.control |
241 | ifndef BUILD_NO_MICROMAIL |
248 | ifndef BUILD_NO_MICROMAIL |
242 | mkipks kopiemail.control |
249 | mkipks kopiemail.control |
243 | endif |
250 | endif |
244 | ifndef BUILD_NO_SHARP_PLUGIN |
251 | ifndef BUILD_NO_SHARP_PLUGIN |
245 | mkipks ksharpPIM-DTMaccess.control |
252 | mkipks ksharpPIM-DTMaccess.control |
246 | endif |
253 | endif |
247 | mkipks korganizer-alarm.control |
254 | mkipks korganizer-alarm.control |
248 | ifndef BUILD_NO_GAMMU |
255 | ifndef BUILD_NO_GAMMU |
249 | mkipks kmobilephoneaccess.control |
256 | mkipks kmobilephoneaccess.control |
250 | endif |
257 | endif |
251 | ifndef BUILD_NO_PWMANAGER |
258 | ifndef BUILD_NO_PWMANAGER |
252 | mkipks pwmanager.control |
259 | mkipks pwmanager.control |
253 | endif |
260 | endif |
254 | mkipks pimTABicon.control |
261 | mkipks pimTABicon.control |
255 | zip kdepim_$(KDEPIM_VERSION)_for_SharpRom.ipk.zip *.ipk ReleaseNotes.txt |
262 | zip kdepim_$(KDEPIM_VERSION)_for_SharpRom.ipk.zip *.ipk ReleaseNotes.txt |
| |
263 | mv *.ipk ../new_$(KDEPIM_VERSION)/ |
| |
264 | mv *for_SharpRom.ipk.zip ../new_$(KDEPIM_VERSION)/ |
| |
265 | mv ../kdepimpi-$(KDEPIM_VERSION).tar.gz ../new_$(KDEPIM_VERSION)/ |
256 | |
266 | |
257 | tmake: objects \ |
267 | tmake: objects \ |
258 | qtcompat/Makefile$(PLATFORM) \ |
268 | qtcompat/Makefile$(PLATFORM) \ |
259 | microkde/Makefile$(PLATFORM) \ |
269 | microkde/Makefile$(PLATFORM) \ |
260 | libkcal/Makefile$(PLATFORM) \ |
270 | libkcal/Makefile$(PLATFORM) \ |
261 | libkdepim/Makefile$(PLATFORM) \ |
271 | libkdepim/Makefile$(PLATFORM) \ |
262 | korganizer/Makefile$(PLATFORM) \ |
272 | korganizer/Makefile$(PLATFORM) \ |
263 | kalarmd/Makefile$(PLATFORM) \ |
273 | kalarmd/Makefile$(PLATFORM) \ |
264 | libical/src/libical/Makefile$(PLATFORM) \ |
274 | libical/src/libical/Makefile$(PLATFORM) \ |
265 | libical/src/libicalss/Makefile$(PLATFORM) \ |
275 | libical/src/libicalss/Makefile$(PLATFORM) \ |
266 | kabc/Makefile$(PLATFORM) \ |
276 | kabc/Makefile$(PLATFORM) \ |
267 | kabc/formats/binary/Makefile$(PLATFORM) \ |
277 | kabc/formats/binary/Makefile$(PLATFORM) \ |
268 | kabc/plugins/file/Makefile$(PLATFORM) \ |
278 | kabc/plugins/file/Makefile$(PLATFORM) \ |
269 | kabc/plugins/dir/Makefile$(PLATFORM) \ |
279 | kabc/plugins/dir/Makefile$(PLATFORM) \ |
270 | kabc/plugins/ldap/Makefile$(PLATFORM) \ |
280 | kabc/plugins/ldap/Makefile$(PLATFORM) \ |
271 | kabc/plugins/opie/Makefile$(PLATFORM) \ |
281 | kabc/plugins/opie/Makefile$(PLATFORM) \ |
272 | kabc/plugins/qtopia/Makefile$(PLATFORM) \ |
282 | kabc/plugins/qtopia/Makefile$(PLATFORM) \ |
273 | kabc/plugins/sharpdtm/Makefile$(PLATFORM) \ |
283 | kabc/plugins/sharpdtm/Makefile$(PLATFORM) \ |
274 | kaddressbook/Makefile$(PLATFORM) \ |
284 | kaddressbook/Makefile$(PLATFORM) \ |
275 | kmicromail/Makefile$(PLATFORM) \ |
285 | kmicromail/Makefile$(PLATFORM) \ |
276 | kmicromail/libetpan/Makefile$(PLATFORM) \ |
286 | kmicromail/libetpan/Makefile$(PLATFORM) \ |
277 | kmicromail/libmailwrapper/Makefile$(PLATFORM) \ |
287 | kmicromail/libmailwrapper/Makefile$(PLATFORM) \ |
278 | gammu/emb/common/Makefile$(PLATFORM) \ |
288 | gammu/emb/common/Makefile$(PLATFORM) \ |
279 | gammu/emb/gammu/Makefile$(PLATFORM) \ |
289 | gammu/emb/gammu/Makefile$(PLATFORM) \ |
280 | pwmanager/pwmanager/Makefile$(PLATFORM) \ |
290 | pwmanager/pwmanager/Makefile$(PLATFORM) \ |
281 | pwmanager/libcrypt/mpi/Makefile$(PLATFORM) \ |
291 | pwmanager/libcrypt/mpi/Makefile$(PLATFORM) \ |
282 | pwmanager/libcrypt/error/Makefile$(PLATFORM) \ |
292 | pwmanager/libcrypt/error/Makefile$(PLATFORM) \ |
283 | pwmanager/libcrypt/cipher/Makefile$(PLATFORM) \ |
293 | pwmanager/libcrypt/cipher/Makefile$(PLATFORM) \ |
284 | pwmanager/libcrypt/zlib/Makefile$(PLATFORM) |
294 | pwmanager/libcrypt/zlib/Makefile$(PLATFORM) |
285 | |
295 | |
286 | qtcompat/Makefile$(PLATFORM): qtcompat/qtcompat.pro |
296 | qtcompat/Makefile$(PLATFORM): qtcompat/qtcompat.pro |
287 | cd qtcompat; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" qtcompat.pro -o Makefile$(PLATFORM) |
297 | cd qtcompat; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" qtcompat.pro -o Makefile$(PLATFORM) |
288 | |
298 | |
289 | microkde/Makefile$(PLATFORM): microkde/microkdeE.pro |
299 | microkde/Makefile$(PLATFORM): microkde/microkdeE.pro |
290 | cd microkde; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" microkdeE.pro -o Makefile$(PLATFORM) |
300 | cd microkde; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" microkdeE.pro -o Makefile$(PLATFORM) |
291 | |
301 | |
292 | libkcal/Makefile$(PLATFORM): libkcal/libkcalE.pro |
302 | libkcal/Makefile$(PLATFORM): libkcal/libkcalE.pro |
293 | cd libkcal; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" libkcalE.pro -o Makefile$(PLATFORM) |
303 | cd libkcal; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" libkcalE.pro -o Makefile$(PLATFORM) |
294 | |
304 | |
295 | |
305 | |
296 | libkdepim/Makefile$(PLATFORM): libkdepim/libkdepimE.pro |
306 | libkdepim/Makefile$(PLATFORM): libkdepim/libkdepimE.pro |
297 | cd libkdepim; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" libkdepimE.pro -o Makefile$(PLATFORM) |
307 | cd libkdepim; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" libkdepimE.pro -o Makefile$(PLATFORM) |
298 | |
308 | |
299 | kalarmd/Makefile$(PLATFORM): kalarmd/kalarmdE.pro |
309 | kalarmd/Makefile$(PLATFORM): kalarmd/kalarmdE.pro |
300 | cd kalarmd; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" kalarmdE.pro -o Makefile$(PLATFORM) |
310 | cd kalarmd; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" kalarmdE.pro -o Makefile$(PLATFORM) |
301 | |
311 | |
302 | korganizer/Makefile$(PLATFORM): korganizer/korganizerE.pro |
312 | korganizer/Makefile$(PLATFORM): korganizer/korganizerE.pro |
303 | cd korganizer; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" korganizerE.pro -o Makefile$(PLATFORM) |
313 | cd korganizer; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" korganizerE.pro -o Makefile$(PLATFORM) |
304 | |
314 | |
305 | libical/src/libical/Makefile$(PLATFORM): libical/src/libical/libicalE.pro |
315 | libical/src/libical/Makefile$(PLATFORM): libical/src/libical/libicalE.pro |
306 | cd libical/src/libical; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" libicalE.pro -o Makefile$(PLATFORM) |
316 | cd libical/src/libical; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" libicalE.pro -o Makefile$(PLATFORM) |
307 | |
317 | |
308 | libical/src/libicalss/Makefile$(PLATFORM): libical/src/libicalss/libicalssE.pro |
318 | libical/src/libicalss/Makefile$(PLATFORM): libical/src/libicalss/libicalssE.pro |
309 | cd libical/src/libicalss; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" libicalssE.pro -o Makefile$(PLATFORM) |
319 | cd libical/src/libicalss; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" libicalssE.pro -o Makefile$(PLATFORM) |
310 | |
320 | |
311 | kabc/Makefile$(PLATFORM): kabc/kabcE.pro |
321 | kabc/Makefile$(PLATFORM): kabc/kabcE.pro |
312 | cd kabc; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" kabcE.pro -o Makefile$(PLATFORM) |
322 | cd kabc; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" kabcE.pro -o Makefile$(PLATFORM) |
313 | |
323 | |
314 | kabc/formats/binary/Makefile$(PLATFORM): kabc/formats/binary/kabcformat_binaryE.pro |
324 | kabc/formats/binary/Makefile$(PLATFORM): kabc/formats/binary/kabcformat_binaryE.pro |
315 | cd kabc/formats/binary; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" kabcformat_binaryE.pro -o Makefile$(PLATFORM) |
325 | cd kabc/formats/binary; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" kabcformat_binaryE.pro -o Makefile$(PLATFORM) |
316 | |
326 | |
317 | kabc/plugins/file/Makefile$(PLATFORM): kabc/plugins/file/fileE.pro |
327 | kabc/plugins/file/Makefile$(PLATFORM): kabc/plugins/file/fileE.pro |
318 | cd kabc/plugins/file; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" fileE.pro -o Makefile$(PLATFORM) |
328 | cd kabc/plugins/file; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" fileE.pro -o Makefile$(PLATFORM) |
319 | |
329 | |
320 | kabc/plugins/dir/Makefile$(PLATFORM): kabc/plugins/dir/dirE.pro |
330 | kabc/plugins/dir/Makefile$(PLATFORM): kabc/plugins/dir/dirE.pro |
321 | cd kabc/plugins/dir; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" dirE.pro -o Makefile$(PLATFORM) |
331 | cd kabc/plugins/dir; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" dirE.pro -o Makefile$(PLATFORM) |
322 | |
332 | |
323 | kabc/plugins/ldap/Makefile$(PLATFORM): kabc/plugins/ldap/ldapE.pro |
333 | kabc/plugins/ldap/Makefile$(PLATFORM): kabc/plugins/ldap/ldapE.pro |
324 | cd kabc/plugins/ldap; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" ldapE.pro -o Makefile$(PLATFORM) |
334 | cd kabc/plugins/ldap; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" ldapE.pro -o Makefile$(PLATFORM) |
325 | |
335 | |
326 | kabc/plugins/opie/Makefile$(PLATFORM): kabc/plugins/opie/opieE.pro |
336 | kabc/plugins/opie/Makefile$(PLATFORM): kabc/plugins/opie/opieE.pro |
327 | cd kabc/plugins/opie; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" opieE.pro -o Makefile$(PLATFORM) |
337 | cd kabc/plugins/opie; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" opieE.pro -o Makefile$(PLATFORM) |
328 | |
338 | |
329 | kabc/plugins/qtopia/Makefile$(PLATFORM): kabc/plugins/qtopia/qtopiaE.pro |
339 | kabc/plugins/qtopia/Makefile$(PLATFORM): kabc/plugins/qtopia/qtopiaE.pro |
330 | cd kabc/plugins/qtopia; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" qtopiaE.pro -o Makefile$(PLATFORM) |
340 | cd kabc/plugins/qtopia; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" qtopiaE.pro -o Makefile$(PLATFORM) |
331 | |
341 | |
332 | kabc/plugins/sharpdtm/Makefile$(PLATFORM): kabc/plugins/sharpdtm/sharpdtmE.pro |
342 | kabc/plugins/sharpdtm/Makefile$(PLATFORM): kabc/plugins/sharpdtm/sharpdtmE.pro |
333 | cd kabc/plugins/sharpdtm; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" sharpdtmE.pro -o Makefile$(PLATFORM) |
343 | cd kabc/plugins/sharpdtm; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" sharpdtmE.pro -o Makefile$(PLATFORM) |
334 | |
344 | |
335 | kaddressbook/Makefile$(PLATFORM): kaddressbook/kaddressbookE.pro |
345 | kaddressbook/Makefile$(PLATFORM): kaddressbook/kaddressbookE.pro |
336 | cd kaddressbook; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" kaddressbookE.pro -o Makefile$(PLATFORM) |
346 | cd kaddressbook; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" kaddressbookE.pro -o Makefile$(PLATFORM) |
337 | |
347 | |
338 | kmicromail/Makefile$(PLATFORM): kmicromail/kmicromailE.pro |
348 | kmicromail/Makefile$(PLATFORM): kmicromail/kmicromailE.pro |
339 | cd kmicromail; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" kmicromailE.pro -o Makefile$(PLATFORM) |
349 | cd kmicromail; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" kmicromailE.pro -o Makefile$(PLATFORM) |
340 | |
350 | |
341 | kmicromail/libetpan/Makefile$(PLATFORM): kmicromail/libetpan/libetpanE.pro |
351 | kmicromail/libetpan/Makefile$(PLATFORM): kmicromail/libetpan/libetpanE.pro |
342 | cd kmicromail/libetpan; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" libetpanE.pro -o Makefile$(PLATFORM) |
352 | cd kmicromail/libetpan; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" libetpanE.pro -o Makefile$(PLATFORM) |
343 | |
353 | |
344 | kmicromail/libmailwrapper/Makefile$(PLATFORM): kmicromail/libmailwrapper/libmailwrapperE.pro |
354 | kmicromail/libmailwrapper/Makefile$(PLATFORM): kmicromail/libmailwrapper/libmailwrapperE.pro |
345 | cd kmicromail/libmailwrapper; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" libmailwrapperE.pro -o Makefile$(PLATFORM) |
355 | cd kmicromail/libmailwrapper; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" libmailwrapperE.pro -o Makefile$(PLATFORM) |
346 | |
356 | |
347 | gammu/emb/common/Makefile$(PLATFORM): gammu/emb/common/commonE.pro |
357 | gammu/emb/common/Makefile$(PLATFORM): gammu/emb/common/commonE.pro |
348 | cd gammu/emb/common; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" commonE.pro -o Makefile$(PLATFORM) |
358 | cd gammu/emb/common; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" commonE.pro -o Makefile$(PLATFORM) |
349 | |
359 | |
350 | gammu/emb/gammu/Makefile$(PLATFORM): gammu/emb/gammu/gammuE.pro |
360 | gammu/emb/gammu/Makefile$(PLATFORM): gammu/emb/gammu/gammuE.pro |
351 | cd gammu/emb/gammu; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" gammuE.pro -o Makefile$(PLATFORM) |
361 | cd gammu/emb/gammu; tmake "CONFIG+=$(RELEASE_DEBUG)" "VERSION=$(KDEPIM_VERSION)" gammuE.pro -o Makefile$(PLATFORM) |
|