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