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