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