FreeCalypso > hg > fc-magnetite
annotate components/aci-classic @ 701:35e7f9d0379f
targets: add TARGET_HAS_BUZZER to c11x, c139 and dsample
This new target config preprocessor symbol was introduced in Tourmaline
in connection with the new approach to playing buzzer melodies via PWT,
properly omitting the responsible code on targets where BU output
controls the vibrator instead. That code is not present in Magnetite
and we have no plans to backport it here, but target header files
should be kept consistent between the two trees, especially given
that we plan to support FC Venus target in Magnetite.
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sat, 26 Mar 2022 19:51:34 +0000 |
parents | afcb1115b9b3 |
children |
rev | line source |
---|---|
10 | 1 # Building the classic TCS211 version of aci.lib |
2 | |
3 CFLAGS="-me -mt -o -pw2 -x -mw" | |
4 CPPFLAGS= | |
5 | |
15
c8bdae60fcb1
changed the generation of *_version.c files to not break on make clean
Mychaela Falconia <falcon@freecalypso.org>
parents:
12
diff
changeset
|
6 make_version aci |
10 | 7 cfile_plain aci_version.c |
8 | |
9 # Defines | |
10 | |
11 CPPFLAGS=-DCCDTABLES_EXTERN | |
12 CPPFLAGS="$CPPFLAGS -DOPTION_MULTITHREAD" | |
13 CPPFLAGS="$CPPFLAGS -DNEW_FRAME" | |
14 CPPFLAGS="$CPPFLAGS -DNEW_ENTITY" | |
15 CPPFLAGS="$CPPFLAGS -D_TARGET_" | |
16 CPPFLAGS="$CPPFLAGS -DSHARED_VSI" | |
17 CPPFLAGS="$CPPFLAGS -DALR" | |
18 CPPFLAGS="$CPPFLAGS -DFF_HOMEZONE" | |
19 CPPFLAGS="$CPPFLAGS -DFF_MMI_SAT_ICON" | |
20 CPPFLAGS="$CPPFLAGS -DFF_MMI_SMS_DYNAMIC" | |
21 CPPFLAGS="$CPPFLAGS -DFF_CPHS" | |
22 CPPFLAGS="$CPPFLAGS -D_TMS470" | |
23 CPPFLAGS="$CPPFLAGS -DUART" | |
24 CPPFLAGS="$CPPFLAGS -DFF_ATI" | |
25 CPPFLAGS="$CPPFLAGS -DNWARN" | |
26 CPPFLAGS="$CPPFLAGS -DFF_EM_MODE" | |
27 CPPFLAGS="$CPPFLAGS -DVOCODER_FUNC_INTERFACE" | |
28 CPPFLAGS="$CPPFLAGS -DAT_INTERPRETER" | |
29 CPPFLAGS="$CPPFLAGS -DUSE_L1FD_FUNC_INTERFACE" | |
30 | |
31 if [ "$SRVC" != 0 ] | |
32 then | |
33 CPPFLAGS="$CPPFLAGS -DFAX_AND_DATA" | |
34 if [ "$SRVC" = 1 ] | |
35 then | |
36 CPPFLAGS="$CPPFLAGS -DFF_FAX" | |
37 fi | |
38 CPPFLAGS="$CPPFLAGS -DUSE_L2FD_FUNC_INTERFACE" | |
39 fi | |
40 | |
41 CPPFLAGS="$CPPFLAGS -DSRVC=$SRVC" | |
42 CPPFLAGS="$CPPFLAGS -DMMI=$MMI" | |
43 | |
44 if [ "$MMI" = 0 ] | |
45 then | |
46 CPPFLAGS="$CPPFLAGS -DACI" | |
47 elif [ "$MMI" = 2 ] | |
48 then | |
49 CPPFLAGS="$CPPFLAGS -DMFW" | |
50 fi | |
51 | |
52 CPPFLAGS="$CPPFLAGS -DPHONEBOOK_EXTENSION" | |
53 | |
54 if [ "$GPRS" = 1 ] | |
55 then | |
56 CPPFLAGS="$CPPFLAGS -DGPRS" | |
57 fi | |
58 | |
59 CPPFLAGS="$CPPFLAGS -DSMS_PDU_SUPPORT" | |
60 CPPFLAGS="$CPPFLAGS -DSIM_TOOLKIT" | |
61 CPPFLAGS="$CPPFLAGS -DDTI2" | |
62 CPPFLAGS="$CPPFLAGS -DDTI" | |
63 CPPFLAGS="$CPPFLAGS -DUART" | |
64 CPPFLAGS="$CPPFLAGS -DFF_ATI" | |
65 | |
66 # Includes | |
67 | |
19
88f40f4c829f
condat2 vs. condat3 includes selection logic
Mychaela Falconia <falcon@freecalypso.org>
parents:
17
diff
changeset
|
68 CPPFLAGS="$CPPFLAGS -I$SRC/$CONDAT/com/inc" |
17
6323e661f2ed
added the ability to select different gpf and cdginc versions
Mychaela Falconia <falcon@freecalypso.org>
parents:
15
diff
changeset
|
69 CPPFLAGS="$CPPFLAGS -I$SRC/$GPF/inc" |
19
88f40f4c829f
condat2 vs. condat3 includes selection logic
Mychaela Falconia <falcon@freecalypso.org>
parents:
17
diff
changeset
|
70 CPPFLAGS="$CPPFLAGS -I$SRC/$CONDAT/com/include" |
17
6323e661f2ed
added the ability to select different gpf and cdginc versions
Mychaela Falconia <falcon@freecalypso.org>
parents:
15
diff
changeset
|
71 CPPFLAGS="$CPPFLAGS -I../../$CDGINC" |
10 | 72 |
73 if [ "$MMI" = 2 ] | |
74 then | |
75 CPPFLAGS="$CPPFLAGS -I$SRC/aci2/mfw" | |
76 fi | |
77 | |
78 CPPFLAGS="$CPPFLAGS -I$SRC/aci2/ksd" | |
79 CPPFLAGS="$CPPFLAGS -I$SRC/aci2/ati_ext" | |
80 CPPFLAGS="$CPPFLAGS -I$SRC/aci2/aci" | |
81 CPPFLAGS="$CPPFLAGS -I$SRC/aci2/aci_ext" | |
82 CPPFLAGS="$CPPFLAGS -I$SRC/aci2/aci_dti_mng" | |
17
6323e661f2ed
added the ability to select different gpf and cdginc versions
Mychaela Falconia <falcon@freecalypso.org>
parents:
15
diff
changeset
|
83 CPPFLAGS="$CPPFLAGS -I../../$CDGPRIM" |
10 | 84 CPPFLAGS="$CPPFLAGS -I.." |
85 CPPFLAGS="$CPPFLAGS -I../config" | |
86 CPPFLAGS="$CPPFLAGS -I$SRC/cs/riviera" | |
87 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_app" | |
88 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core" | |
89 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/abb" | |
90 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/armio" | |
91 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/clkm" | |
92 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/conf" | |
93 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/dma" | |
94 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/dsp_dwnld" | |
95 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/inth" | |
96 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/memif" | |
97 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/rhea" | |
98 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/security" | |
99 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/spi" | |
100 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/timer" | |
101 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/uart" | |
102 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/ulpd" | |
103 CPPFLAGS="$CPPFLAGS -I$SRC/cs/system" | |
104 CPPFLAGS="$CPPFLAGS -I$SRC/cs/layer1/include" | |
105 CPPFLAGS="$CPPFLAGS -I$SRC/cs/services" | |
106 | |
107 # ACI source modules | |
108 | |
109 SRCDIR=$SRC/aci2/aci | |
110 | |
111 # ATI stuff | |
112 cfile_str2ind $SRCDIR/ati_sat.c | |
113 cfile_str2ind $SRCDIR/ati_src_sat.c | |
114 cfile_str2ind $SRCDIR/ati_pdu.c | |
115 cfile_str2ind $SRCDIR/ati_bas.c | |
116 cfile_str2ind $SRCDIR/ati_cc.c | |
117 cfile_str2ind $SRCDIR/ati_cmd.c | |
118 cfile_str2ind $SRCDIR/ati_csc.c | |
119 cfile_str2ind $SRCDIR/ati_err.c | |
120 | |
121 if [ "$SRVC" != 0 ] | |
122 then | |
123 cfile_str2ind $SRCDIR/ati_fd.c | |
124 fi | |
125 | |
126 cfile_str2ind $SRCDIR/ati_io.c | |
127 cfile_str2ind $SRCDIR/ati_mm.c | |
128 cfile_str2ind $SRCDIR/ati_phb.c | |
129 cfile_str2ind $SRCDIR/ati_prs.c | |
130 cfile_str2ind $SRCDIR/ati_ret.c | |
131 cfile_str2ind $SRCDIR/ati_sim.c | |
132 cfile_str2ind $SRCDIR/ati_sms.c | |
133 cfile_str2ind $SRCDIR/ati_ss.c | |
134 | |
135 if [ "$GPRS" = 1 ] | |
136 then | |
137 cfile_str2ind $SRCDIR/ati_gprs.c | |
138 fi | |
139 | |
140 cfile_str2ind $SRCDIR/ati_mmi.c | |
141 cfile_str2ind $SRCDIR/ati_em.c | |
142 cfile_str2ind $SRCDIR/ati_em_ret.c | |
143 cfile_str2ind $SRCDIR/ati_cphs.c | |
144 cfile_str2ind $SRCDIR/ati_dti.c | |
145 | |
146 cfile_str2ind $SRCDIR/ati_src_rvt.c | |
147 cfile_str2ind $SRCDIR/ati_omcompat.c | |
226
67fe1b3f4bd7
aci2: added some AT commands for exercising audio functions
Mychaela Falconia <falcon@freecalypso.org>
parents:
19
diff
changeset
|
148 cfile_str2ind $SRCDIR/ati_audio.c |
347
78d1df0b8487
aci2: AT%CBC and AT@CHARGE implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
226
diff
changeset
|
149 cfile_str2ind $SRCDIR/ati_fchg.c |
664
afcb1115b9b3
AT@SPENH command implemented in aci2
Mychaela Falconia <falcon@freecalypso.org>
parents:
347
diff
changeset
|
150 cfile_str2ind $SRCDIR/ati_fcmisc.c |
10 | 151 |
152 # ACI stuff | |
153 cfile_str2ind $SRCDIR/aci_aci.c | |
154 cfile_str2ind $SRCDIR/aci_mem.c | |
155 cfile_str2ind $SRCDIR/aci_csf.c | |
156 cfile_str2ind $SRCDIR/aci_pei.c | |
157 cfile_str2ind $SRCDIR/aci_tim.c | |
158 cfile_str2ind $SRCDIR/aci_util.c | |
159 cfile_str2ind $SRCDIR/aci_lst.c | |
160 cfile_str2ind $SRCDIR/dti_cntrl_mng.c | |
161 cfile_str2ind $SRCDIR/phb.c | |
162 cfile_str2ind $SRCDIR/aoc.c | |
163 cfile_str2ind $SRCDIR/aci_mfw.c | |
164 cfile_str2ind $SRCDIR/aci_slock.c | |
165 cfile_str2ind $SRCDIR/aci_em.c | |
166 | |
167 if [ "$GPRS" = 1 ] | |
168 then | |
169 cfile_str2ind $SRCDIR/gaci_srcc.c | |
170 cfile_str2ind $SRCDIR/gaci.c | |
171 cfile_str2ind $SRCDIR/gaci_ret.c | |
172 fi | |
173 | |
174 cfile_str2ind $SRCDIR/hl_audio_drv.c | |
175 | |
176 # ATISRC stuff | |
177 cfile_str2ind $SRCDIR/ati_src_uart.c | |
178 cfile_str2ind $SRCDIR/ati_src_uart_io.c | |
179 | |
180 # CMH stuff (part 1) | |
181 cfile_str2ind $SRCDIR/cmh_sats.c | |
182 cfile_str2ind $SRCDIR/cmh_satr.c | |
183 cfile_str2ind $SRCDIR/cmh_satq.c | |
184 | |
185 # CMH stuff (part 2) | |
186 if [ "$SRVC" = 0 ] | |
187 then | |
188 cfile_str2ind $SRCDIR/cmh_ccf.c | |
189 cfile_str2ind $SRCDIR/cmh_ccq.c | |
190 cfile_str2ind $SRCDIR/cmh_ccr.c | |
191 cfile_str2ind $SRCDIR/cmh_ccs.c | |
192 cfile_str2ind $SRCDIR/cmh_dmy.c | |
193 cfile_str2ind $SRCDIR/cmh_f.c | |
194 cfile_str2ind $SRCDIR/cmh_mmf.c | |
195 cfile_str2ind $SRCDIR/cmh_mmir.c | |
196 cfile_str2ind $SRCDIR/cmh_mmis.c | |
197 cfile_str2ind $SRCDIR/cmh_mmit.c | |
198 cfile_str2ind $SRCDIR/cmh_mmiq.c | |
199 cfile_str2ind $SRCDIR/cmh_mmq.c | |
200 cfile_str2ind $SRCDIR/cmh_mmr.c | |
201 cfile_str2ind $SRCDIR/cmh_mms.c | |
202 cfile_str2ind $SRCDIR/cmh_mmt.c | |
203 cfile_str2ind $SRCDIR/cmh_phbf.c | |
204 cfile_str2ind $SRCDIR/cmh_ssq.c | |
205 cfile_str2ind $SRCDIR/cmh_ssr.c | |
206 cfile_str2ind $SRCDIR/cmh_sss.c | |
207 cfile_str2ind $SRCDIR/cmh_phbq.c | |
208 cfile_str2ind $SRCDIR/cmh_phbs.c | |
209 cfile_str2ind $SRCDIR/cmh_phbt.c | |
210 cfile_str2ind $SRCDIR/cmh_phbr.c | |
211 cfile_str2ind $SRCDIR/cmh_simf.c | |
212 cfile_str2ind $SRCDIR/cmh_simq.c | |
213 cfile_str2ind $SRCDIR/cmh_simr.c | |
214 cfile_str2ind $SRCDIR/cmh_sims.c | |
215 cfile_str2ind $SRCDIR/cmh_smsf.c | |
216 cfile_str2ind $SRCDIR/cmh_smsq.c | |
217 cfile_str2ind $SRCDIR/cmh_smsr.c | |
218 cfile_str2ind $SRCDIR/cmh_smss.c | |
219 cfile_str2ind $SRCDIR/cmh_ssf.c | |
220 cfile_str2ind $SRCDIR/cmh_tsts.c | |
221 cfile_str2ind $SRCDIR/cmh_uartf.c | |
222 cfile_str2ind $SRCDIR/cmh_uartr.c | |
223 cfile_str2ind $SRCDIR/cmh_uarts.c | |
224 fi | |
225 | |
226 cfile_str2ind $SRCDIR/cmh_emq.c | |
227 cfile_str2ind $SRCDIR/cmh_emr.c | |
228 | |
229 # CMH stuff (part 3) | |
230 if [ "$SRVC" != 0 ] | |
231 then | |
232 cfile_str2ind $SRCDIR/cmh_ccf.c | |
233 cfile_str2ind $SRCDIR/cmh_ccq.c | |
234 cfile_str2ind $SRCDIR/cmh_ccr.c | |
235 cfile_str2ind $SRCDIR/cmh_ccs.c | |
236 cfile_str2ind $SRCDIR/cmh_dmy.c | |
237 cfile_str2ind $SRCDIR/cmh_f.c | |
238 cfile_str2ind $SRCDIR/cmh_l2rf.c | |
239 cfile_str2ind $SRCDIR/cmh_l2rq.c | |
240 cfile_str2ind $SRCDIR/cmh_l2rr.c | |
241 cfile_str2ind $SRCDIR/cmh_l2rs.c | |
242 cfile_str2ind $SRCDIR/cmh_mmf.c | |
243 cfile_str2ind $SRCDIR/cmh_mmir.c | |
244 cfile_str2ind $SRCDIR/cmh_mmis.c | |
245 cfile_str2ind $SRCDIR/cmh_mmit.c | |
246 cfile_str2ind $SRCDIR/cmh_mmiq.c | |
247 cfile_str2ind $SRCDIR/cmh_mmq.c | |
248 cfile_str2ind $SRCDIR/cmh_mmr.c | |
249 cfile_str2ind $SRCDIR/cmh_mms.c | |
250 cfile_str2ind $SRCDIR/cmh_mmt.c | |
251 cfile_str2ind $SRCDIR/cmh_phbf.c | |
252 cfile_str2ind $SRCDIR/cmh_phbq.c | |
253 cfile_str2ind $SRCDIR/cmh_ssq.c | |
254 cfile_str2ind $SRCDIR/cmh_ssr.c | |
255 cfile_str2ind $SRCDIR/cmh_sss.c | |
256 cfile_str2ind $SRCDIR/cmh_phbs.c | |
257 cfile_str2ind $SRCDIR/cmh_phbt.c | |
258 cfile_str2ind $SRCDIR/cmh_phbr.c | |
259 cfile_str2ind $SRCDIR/cmh_raf.c | |
260 cfile_str2ind $SRCDIR/cmh_rar.c | |
261 cfile_str2ind $SRCDIR/cmh_ras.c | |
262 cfile_str2ind $SRCDIR/cmh_simf.c | |
263 cfile_str2ind $SRCDIR/cmh_simq.c | |
264 cfile_str2ind $SRCDIR/cmh_simr.c | |
265 cfile_str2ind $SRCDIR/cmh_sims.c | |
266 cfile_str2ind $SRCDIR/cmh_smsf.c | |
267 cfile_str2ind $SRCDIR/cmh_smsq.c | |
268 cfile_str2ind $SRCDIR/cmh_smsr.c | |
269 cfile_str2ind $SRCDIR/cmh_smss.c | |
270 cfile_str2ind $SRCDIR/cmh_ssf.c | |
271 | |
272 if [ "$SRVC" = 1 ] | |
273 then | |
274 cfile_str2ind $SRCDIR/cmh_t30f.c | |
275 cfile_str2ind $SRCDIR/cmh_t30r.c | |
276 cfile_str2ind $SRCDIR/cmh_t30s.c | |
277 cfile_str2ind $SRCDIR/cmh_t30q.c | |
278 fi | |
279 | |
280 cfile_str2ind $SRCDIR/cmh_tsts.c | |
281 cfile_str2ind $SRCDIR/cmh_uartf.c | |
282 cfile_str2ind $SRCDIR/cmh_uartr.c | |
283 cfile_str2ind $SRCDIR/cmh_uarts.c | |
284 fi | |
285 | |
286 # CMH stuff (part 4) | |
287 # all WAP/TCPIP/SATE stuff - not in FreeCalypso | |
288 | |
289 # CMH stuff (part 5) | |
290 if [ "$GPRS" = 1 ] | |
291 then | |
292 cfile_str2ind $SRCDIR/cmh_gmmf.c | |
293 cfile_str2ind $SRCDIR/cmh_gmmq.c | |
294 cfile_str2ind $SRCDIR/cmh_gmmr.c | |
295 cfile_str2ind $SRCDIR/cmh_gmms.c | |
296 cfile_str2ind $SRCDIR/cmh_gpppf.c | |
297 cfile_str2ind $SRCDIR/cmh_gpppr.c | |
298 cfile_str2ind $SRCDIR/cmh_gppps.c | |
299 cfile_str2ind $SRCDIR/cmh_snds.c | |
300 cfile_str2ind $SRCDIR/cmh_sndr.c | |
301 cfile_str2ind $SRCDIR/cmh_smf.c | |
302 cfile_str2ind $SRCDIR/cmh_smq.c | |
303 cfile_str2ind $SRCDIR/cmh_smr.c | |
304 cfile_str2ind $SRCDIR/cmh_sms.c | |
305 cfile_str2ind $SRCDIR/cmh_smt.c | |
306 fi | |
307 | |
308 # CMH stuff (part 6) | |
309 cfile_str2ind $SRCDIR/cmh_cphs.c | |
310 cfile_str2ind $SRCDIR/cmh_dti.c | |
311 | |
312 # PSA stuff | |
313 cfile_str2ind $SRCDIR/psa_satf.c | |
314 cfile_str2ind $SRCDIR/psa_satp.c | |
315 cfile_str2ind $SRCDIR/psa_sats.c | |
316 cfile_str2ind $SRCDIR/cmh_satf.c | |
317 | |
318 cfile_str2ind $SRCDIR/psa_ccf.c | |
319 cfile_str2ind $SRCDIR/psa_ccp.c | |
320 cfile_str2ind $SRCDIR/psa_ccs.c | |
321 cfile_str2ind $SRCDIR/psa_f.c | |
322 | |
323 if [ "$SRVC" != 0 ] | |
324 then | |
325 cfile_str2ind $SRCDIR/psa_l2rf.c | |
326 cfile_str2ind $SRCDIR/psa_l2rp.c | |
327 cfile_str2ind $SRCDIR/psa_l2rs.c | |
328 fi | |
329 | |
330 cfile_str2ind $SRCDIR/psa_mmf.c | |
331 cfile_str2ind $SRCDIR/psa_mmif.c | |
332 cfile_str2ind $SRCDIR/psa_mmip.c | |
333 cfile_str2ind $SRCDIR/psa_mmis.c | |
334 cfile_str2ind $SRCDIR/psa_mmp.c | |
335 cfile_str2ind $SRCDIR/psa_mms.c | |
336 | |
337 if [ "$SRVC" != 0 ] | |
338 then | |
339 cfile_str2ind $SRCDIR/psa_raf.c | |
340 cfile_str2ind $SRCDIR/psa_rap.c | |
341 cfile_str2ind $SRCDIR/psa_ras.c | |
342 fi | |
343 | |
344 cfile_str2ind $SRCDIR/psa_simf.c | |
345 cfile_str2ind $SRCDIR/psa_simp.c | |
346 cfile_str2ind $SRCDIR/psa_sims.c | |
347 cfile_str2ind $SRCDIR/psa_smsf.c | |
348 cfile_str2ind $SRCDIR/psa_smsp.c | |
349 cfile_str2ind $SRCDIR/psa_smss.c | |
350 cfile_str2ind $SRCDIR/psa_ssf.c | |
351 cfile_str2ind $SRCDIR/psa_ssp.c | |
352 cfile_str2ind $SRCDIR/psa_sss.c | |
353 | |
354 if [ "$SRVC" = 1 ] | |
355 then | |
356 cfile_str2ind $SRCDIR/psa_t30f.c | |
357 cfile_str2ind $SRCDIR/psa_t30p.c | |
358 cfile_str2ind $SRCDIR/psa_t30s.c | |
359 fi | |
360 | |
361 cfile_str2ind $SRCDIR/psa_util.c | |
362 cfile_str2ind $SRCDIR/psa_uartp.c | |
363 cfile_str2ind $SRCDIR/psa_uarts.c | |
364 | |
365 if [ "$SRVC" != 0 ] | |
366 then | |
367 cfile_str2ind $SRCDIR/psa_tras.c | |
368 cfile_str2ind $SRCDIR/psa_trap.c | |
369 fi | |
370 | |
371 cfile_str2ind $SRCDIR/psa_mtst.c | |
372 | |
373 if [ "$GPRS" = 1 ] | |
374 then | |
375 cfile_str2ind $SRCDIR/psa_gmmf.c | |
376 cfile_str2ind $SRCDIR/psa_gmmp.c | |
377 cfile_str2ind $SRCDIR/psa_gmms.c | |
378 cfile_str2ind $SRCDIR/psa_gpppf.c | |
379 cfile_str2ind $SRCDIR/psa_gpppp.c | |
380 cfile_str2ind $SRCDIR/psa_gppps.c | |
381 cfile_str2ind $SRCDIR/psa_sndp.c | |
382 cfile_str2ind $SRCDIR/psa_snds.c | |
383 cfile_str2ind $SRCDIR/psa_smf.c | |
384 cfile_str2ind $SRCDIR/psa_smp.c | |
385 cfile_str2ind $SRCDIR/psa_sms.c | |
386 fi | |
387 | |
388 # miscellaneous stuff | |
389 cfile_str2ind $SRCDIR/sap_dti.c | |
390 | |
391 if [ "$GPRS" = 1 ] | |
392 then | |
393 cfile_str2ind $SRCDIR/sap_ppp.c | |
394 fi | |
395 | |
396 cfile_str2ind $SRCDIR/sap_em.c | |
397 cfile_str2ind $SRCDIR/conc_sms.c | |
398 cfile_str2ind $SRCDIR/cphs.c | |
399 cfile_str2ind $SRCDIR/cphs_aci.c | |
400 cfile_str2ind $SRCDIR/line_edit.c | |
401 cfile_str2ind $SRCDIR/line_split.c | |
402 cfile_str2ind $SRCDIR/dcm_f.c | |
11
f5c6ca078e2f
components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents:
10
diff
changeset
|
403 |
f5c6ca078e2f
components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents:
10
diff
changeset
|
404 # KSD sourceset, new defines |
f5c6ca078e2f
components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents:
10
diff
changeset
|
405 |
f5c6ca078e2f
components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents:
10
diff
changeset
|
406 CPPFLAGS=-DCCDTABLES_EXTERN |
f5c6ca078e2f
components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents:
10
diff
changeset
|
407 CPPFLAGS="$CPPFLAGS -DOPTION_MULTITHREAD" |
f5c6ca078e2f
components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents:
10
diff
changeset
|
408 CPPFLAGS="$CPPFLAGS -DNEW_FRAME" |
f5c6ca078e2f
components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents:
10
diff
changeset
|
409 CPPFLAGS="$CPPFLAGS -DNEW_ENTITY" |
f5c6ca078e2f
components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents:
10
diff
changeset
|
410 CPPFLAGS="$CPPFLAGS -D_TARGET_" |
f5c6ca078e2f
components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents:
10
diff
changeset
|
411 CPPFLAGS="$CPPFLAGS -DSHARED_VSI" |
f5c6ca078e2f
components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents:
10
diff
changeset
|
412 CPPFLAGS="$CPPFLAGS -DALR" |
f5c6ca078e2f
components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents:
10
diff
changeset
|
413 CPPFLAGS="$CPPFLAGS -DFF_HOMEZONE" |
f5c6ca078e2f
components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents:
10
diff
changeset
|
414 CPPFLAGS="$CPPFLAGS -DFF_MMI_SAT_ICON" |
f5c6ca078e2f
components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents:
10
diff
changeset
|
415 CPPFLAGS="$CPPFLAGS -DFF_MMI_SMS_DYNAMIC" |
f5c6ca078e2f
components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents:
10
diff
changeset
|
416 CPPFLAGS="$CPPFLAGS -DFF_CPHS" |
f5c6ca078e2f
components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents:
10
diff
changeset
|
417 CPPFLAGS="$CPPFLAGS -D_TMS470" |
f5c6ca078e2f
components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents:
10
diff
changeset
|
418 CPPFLAGS="$CPPFLAGS -DUART" |
f5c6ca078e2f
components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents:
10
diff
changeset
|
419 CPPFLAGS="$CPPFLAGS -DFF_ATI" |
f5c6ca078e2f
components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents:
10
diff
changeset
|
420 CPPFLAGS="$CPPFLAGS -DNWARN" |
f5c6ca078e2f
components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents:
10
diff
changeset
|
421 CPPFLAGS="$CPPFLAGS -DFF_EM_MODE" |
f5c6ca078e2f
components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents:
10
diff
changeset
|
422 CPPFLAGS="$CPPFLAGS -DAT_INTERPRETER" |
f5c6ca078e2f
components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents:
10
diff
changeset
|
423 CPPFLAGS="$CPPFLAGS -DUSE_L1FD_FUNC_INTERFACE" |
f5c6ca078e2f
components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents:
10
diff
changeset
|
424 |
f5c6ca078e2f
components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents:
10
diff
changeset
|
425 if [ "$SRVC" != 0 ] |
f5c6ca078e2f
components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents:
10
diff
changeset
|
426 then |
f5c6ca078e2f
components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents:
10
diff
changeset
|
427 CPPFLAGS="$CPPFLAGS -DFAX_AND_DATA" |
f5c6ca078e2f
components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents:
10
diff
changeset
|
428 if [ "$SRVC" = 1 ] |
f5c6ca078e2f
components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents:
10
diff
changeset
|
429 then |
f5c6ca078e2f
components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents:
10
diff
changeset
|
430 CPPFLAGS="$CPPFLAGS -DFF_FAX" |
f5c6ca078e2f
components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents:
10
diff
changeset
|
431 fi |
f5c6ca078e2f
components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents:
10
diff
changeset
|
432 CPPFLAGS="$CPPFLAGS -DUSE_L2FD_FUNC_INTERFACE" |
f5c6ca078e2f
components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents:
10
diff
changeset
|
433 fi |
f5c6ca078e2f
components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents:
10
diff
changeset
|
434 |
f5c6ca078e2f
components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents:
10
diff
changeset
|
435 CPPFLAGS="$CPPFLAGS -DSRVC=$SRVC" |
f5c6ca078e2f
components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents:
10
diff
changeset
|
436 CPPFLAGS="$CPPFLAGS -DMMI=$MMI" |
f5c6ca078e2f
components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents:
10
diff
changeset
|
437 |
f5c6ca078e2f
components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents:
10
diff
changeset
|
438 if [ "$MMI" = 0 ] |
f5c6ca078e2f
components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents:
10
diff
changeset
|
439 then |
f5c6ca078e2f
components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents:
10
diff
changeset
|
440 CPPFLAGS="$CPPFLAGS -DACI" |
f5c6ca078e2f
components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents:
10
diff
changeset
|
441 elif [ "$MMI" = 2 ] |
f5c6ca078e2f
components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents:
10
diff
changeset
|
442 then |
f5c6ca078e2f
components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents:
10
diff
changeset
|
443 CPPFLAGS="$CPPFLAGS -DMFW" |
f5c6ca078e2f
components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents:
10
diff
changeset
|
444 fi |
f5c6ca078e2f
components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents:
10
diff
changeset
|
445 |
f5c6ca078e2f
components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents:
10
diff
changeset
|
446 CPPFLAGS="$CPPFLAGS -DPHONEBOOK_EXTENSION" |
f5c6ca078e2f
components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents:
10
diff
changeset
|
447 |
f5c6ca078e2f
components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents:
10
diff
changeset
|
448 if [ "$GPRS" = 1 ] |
f5c6ca078e2f
components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents:
10
diff
changeset
|
449 then |
f5c6ca078e2f
components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents:
10
diff
changeset
|
450 CPPFLAGS="$CPPFLAGS -DGPRS" |
f5c6ca078e2f
components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents:
10
diff
changeset
|
451 fi |
f5c6ca078e2f
components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents:
10
diff
changeset
|
452 |
f5c6ca078e2f
components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents:
10
diff
changeset
|
453 CPPFLAGS="$CPPFLAGS -DSMS_PDU_SUPPORT" |
f5c6ca078e2f
components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents:
10
diff
changeset
|
454 CPPFLAGS="$CPPFLAGS -DSIM_TOOLKIT" |
f5c6ca078e2f
components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents:
10
diff
changeset
|
455 |
f5c6ca078e2f
components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents:
10
diff
changeset
|
456 # New includes |
f5c6ca078e2f
components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents:
10
diff
changeset
|
457 |
19
88f40f4c829f
condat2 vs. condat3 includes selection logic
Mychaela Falconia <falcon@freecalypso.org>
parents:
17
diff
changeset
|
458 CPPFLAGS="$CPPFLAGS -I$SRC/$CONDAT/com/inc" |
17
6323e661f2ed
added the ability to select different gpf and cdginc versions
Mychaela Falconia <falcon@freecalypso.org>
parents:
15
diff
changeset
|
459 CPPFLAGS="$CPPFLAGS -I$SRC/$GPF/inc" |
19
88f40f4c829f
condat2 vs. condat3 includes selection logic
Mychaela Falconia <falcon@freecalypso.org>
parents:
17
diff
changeset
|
460 CPPFLAGS="$CPPFLAGS -I$SRC/$CONDAT/com/include" |
17
6323e661f2ed
added the ability to select different gpf and cdginc versions
Mychaela Falconia <falcon@freecalypso.org>
parents:
15
diff
changeset
|
461 CPPFLAGS="$CPPFLAGS -I../../$CDGINC" |
11
f5c6ca078e2f
components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents:
10
diff
changeset
|
462 CPPFLAGS="$CPPFLAGS -I$SRC/aci2/aci" |
f5c6ca078e2f
components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents:
10
diff
changeset
|
463 CPPFLAGS="$CPPFLAGS -I$SRC/aci2/ksd" |
17
6323e661f2ed
added the ability to select different gpf and cdginc versions
Mychaela Falconia <falcon@freecalypso.org>
parents:
15
diff
changeset
|
464 CPPFLAGS="$CPPFLAGS -I../../$CDGPRIM" |
11
f5c6ca078e2f
components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents:
10
diff
changeset
|
465 |
f5c6ca078e2f
components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents:
10
diff
changeset
|
466 # KSD source modules |
f5c6ca078e2f
components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents:
10
diff
changeset
|
467 |
f5c6ca078e2f
components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents:
10
diff
changeset
|
468 SRCDIR=$SRC/aci2/ksd |
f5c6ca078e2f
components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents:
10
diff
changeset
|
469 |
f5c6ca078e2f
components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents:
10
diff
changeset
|
470 cfile_str2ind $SRCDIR/ksd.c |
f5c6ca078e2f
components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents:
10
diff
changeset
|
471 cfile_str2ind $SRCDIR/ksd_utl.c |
12
be16a5124f86
components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents:
11
diff
changeset
|
472 |
be16a5124f86
components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents:
11
diff
changeset
|
473 # ati_ext sourceset, new defines |
be16a5124f86
components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents:
11
diff
changeset
|
474 |
be16a5124f86
components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents:
11
diff
changeset
|
475 CPPFLAGS=-DCCDTABLES_EXTERN |
be16a5124f86
components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents:
11
diff
changeset
|
476 CPPFLAGS="$CPPFLAGS -DOPTION_MULTITHREAD" |
be16a5124f86
components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents:
11
diff
changeset
|
477 CPPFLAGS="$CPPFLAGS -DNEW_FRAME" |
be16a5124f86
components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents:
11
diff
changeset
|
478 CPPFLAGS="$CPPFLAGS -DNEW_ENTITY" |
be16a5124f86
components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents:
11
diff
changeset
|
479 CPPFLAGS="$CPPFLAGS -D_TARGET_" |
be16a5124f86
components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents:
11
diff
changeset
|
480 CPPFLAGS="$CPPFLAGS -DSHARED_VSI" |
be16a5124f86
components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents:
11
diff
changeset
|
481 CPPFLAGS="$CPPFLAGS -DALR" |
be16a5124f86
components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents:
11
diff
changeset
|
482 CPPFLAGS="$CPPFLAGS -DFF_HOMEZONE" |
be16a5124f86
components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents:
11
diff
changeset
|
483 CPPFLAGS="$CPPFLAGS -DFF_MMI_SAT_ICON" |
be16a5124f86
components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents:
11
diff
changeset
|
484 CPPFLAGS="$CPPFLAGS -DFF_MMI_SMS_DYNAMIC" |
be16a5124f86
components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents:
11
diff
changeset
|
485 CPPFLAGS="$CPPFLAGS -DFF_CPHS" |
be16a5124f86
components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents:
11
diff
changeset
|
486 CPPFLAGS="$CPPFLAGS -D_TMS470" |
be16a5124f86
components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents:
11
diff
changeset
|
487 CPPFLAGS="$CPPFLAGS -DUART" |
be16a5124f86
components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents:
11
diff
changeset
|
488 CPPFLAGS="$CPPFLAGS -DFF_ATI" |
be16a5124f86
components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents:
11
diff
changeset
|
489 CPPFLAGS="$CPPFLAGS -DNWARN" |
be16a5124f86
components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents:
11
diff
changeset
|
490 CPPFLAGS="$CPPFLAGS -DFF_EM_MODE" |
be16a5124f86
components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents:
11
diff
changeset
|
491 CPPFLAGS="$CPPFLAGS -DAT_INTERPRETER" |
be16a5124f86
components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents:
11
diff
changeset
|
492 CPPFLAGS="$CPPFLAGS -DUSE_L1FD_FUNC_INTERFACE" |
be16a5124f86
components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents:
11
diff
changeset
|
493 |
be16a5124f86
components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents:
11
diff
changeset
|
494 if [ "$SRVC" != 0 ] |
be16a5124f86
components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents:
11
diff
changeset
|
495 then |
be16a5124f86
components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents:
11
diff
changeset
|
496 CPPFLAGS="$CPPFLAGS -DFAX_AND_DATA" |
be16a5124f86
components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents:
11
diff
changeset
|
497 if [ "$SRVC" = 1 ] |
be16a5124f86
components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents:
11
diff
changeset
|
498 then |
be16a5124f86
components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents:
11
diff
changeset
|
499 CPPFLAGS="$CPPFLAGS -DFF_FAX" |
be16a5124f86
components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents:
11
diff
changeset
|
500 fi |
be16a5124f86
components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents:
11
diff
changeset
|
501 CPPFLAGS="$CPPFLAGS -DUSE_L2FD_FUNC_INTERFACE" |
be16a5124f86
components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents:
11
diff
changeset
|
502 fi |
be16a5124f86
components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents:
11
diff
changeset
|
503 |
be16a5124f86
components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents:
11
diff
changeset
|
504 CPPFLAGS="$CPPFLAGS -DSRVC=$SRVC" |
be16a5124f86
components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents:
11
diff
changeset
|
505 CPPFLAGS="$CPPFLAGS -DMMI=$MMI" |
be16a5124f86
components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents:
11
diff
changeset
|
506 |
be16a5124f86
components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents:
11
diff
changeset
|
507 if [ "$MMI" = 0 ] |
be16a5124f86
components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents:
11
diff
changeset
|
508 then |
be16a5124f86
components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents:
11
diff
changeset
|
509 CPPFLAGS="$CPPFLAGS -DACI" |
be16a5124f86
components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents:
11
diff
changeset
|
510 elif [ "$MMI" = 2 ] |
be16a5124f86
components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents:
11
diff
changeset
|
511 then |
be16a5124f86
components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents:
11
diff
changeset
|
512 CPPFLAGS="$CPPFLAGS -DMFW" |
be16a5124f86
components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents:
11
diff
changeset
|
513 fi |
be16a5124f86
components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents:
11
diff
changeset
|
514 |
be16a5124f86
components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents:
11
diff
changeset
|
515 CPPFLAGS="$CPPFLAGS -DPHONEBOOK_EXTENSION" |
be16a5124f86
components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents:
11
diff
changeset
|
516 |
be16a5124f86
components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents:
11
diff
changeset
|
517 if [ "$GPRS" = 1 ] |
be16a5124f86
components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents:
11
diff
changeset
|
518 then |
be16a5124f86
components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents:
11
diff
changeset
|
519 CPPFLAGS="$CPPFLAGS -DGPRS" |
be16a5124f86
components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents:
11
diff
changeset
|
520 fi |
be16a5124f86
components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents:
11
diff
changeset
|
521 |
be16a5124f86
components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents:
11
diff
changeset
|
522 CPPFLAGS="$CPPFLAGS -DSMS_PDU_SUPPORT" |
be16a5124f86
components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents:
11
diff
changeset
|
523 CPPFLAGS="$CPPFLAGS -DSIM_TOOLKIT" |
be16a5124f86
components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents:
11
diff
changeset
|
524 |
be16a5124f86
components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents:
11
diff
changeset
|
525 # New includes |
be16a5124f86
components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents:
11
diff
changeset
|
526 |
19
88f40f4c829f
condat2 vs. condat3 includes selection logic
Mychaela Falconia <falcon@freecalypso.org>
parents:
17
diff
changeset
|
527 CPPFLAGS="$CPPFLAGS -I$SRC/$CONDAT/com/inc" |
17
6323e661f2ed
added the ability to select different gpf and cdginc versions
Mychaela Falconia <falcon@freecalypso.org>
parents:
15
diff
changeset
|
528 CPPFLAGS="$CPPFLAGS -I$SRC/$GPF/inc" |
19
88f40f4c829f
condat2 vs. condat3 includes selection logic
Mychaela Falconia <falcon@freecalypso.org>
parents:
17
diff
changeset
|
529 CPPFLAGS="$CPPFLAGS -I$SRC/$CONDAT/com/include" |
17
6323e661f2ed
added the ability to select different gpf and cdginc versions
Mychaela Falconia <falcon@freecalypso.org>
parents:
15
diff
changeset
|
530 CPPFLAGS="$CPPFLAGS -I../../$CDGINC" |
12
be16a5124f86
components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents:
11
diff
changeset
|
531 CPPFLAGS="$CPPFLAGS -I$SRC/aci2/aci" |
be16a5124f86
components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents:
11
diff
changeset
|
532 CPPFLAGS="$CPPFLAGS -I$SRC/aci2/ati_ext" |
17
6323e661f2ed
added the ability to select different gpf and cdginc versions
Mychaela Falconia <falcon@freecalypso.org>
parents:
15
diff
changeset
|
533 CPPFLAGS="$CPPFLAGS -I../../$CDGPRIM" |
12
be16a5124f86
components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents:
11
diff
changeset
|
534 |
be16a5124f86
components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents:
11
diff
changeset
|
535 # ati_ext source modules |
be16a5124f86
components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents:
11
diff
changeset
|
536 |
be16a5124f86
components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents:
11
diff
changeset
|
537 SRCDIR=$SRC/aci2/ati_ext |
be16a5124f86
components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents:
11
diff
changeset
|
538 |
be16a5124f86
components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents:
11
diff
changeset
|
539 cfile_str2ind $SRCDIR/ati_ext_mech.c |