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