annotate components/icn @ 685:3fb7384e820d

tpudrv12.h: FCDEV3B goes back to being itself A while back we had the idea of a FreeCalypso modem family whereby our current fcdev3b target would some day morph into fcmodem, with multiple FC modem family products, potentially either triband or quadband, being firmware-compatible with each other and with our original FCDEV3B. But in light of the discovery of Tango modules that earlier idea is now being withdrawn: instead the already existing Tango hw is being adopted into our FreeCalypso family. Tango cannot be firmware-compatible with triband OM/FCDEV3B targets because the original quadband RFFE on Tango modules is wired in TI's original Leonardo arrangement. Because this Leonardo/Tango way is now becoming the official FreeCalypso way of driving quadband RFFEs thanks to the adoption of Tango into our FC family, our earlier idea of extending FIC's triband RFFE control signals with TSPACT5 no longer makes much sense - we will probably never produce any new hardware with that once-proposed arrangement. Therefore, that triband-or-quadband FCFAM provision is being removed from the code base, and FCDEV3B goes back to being treated the same way as CONFIG_TARGET_GTAMODEM for RFFE control purposes.
author Mychaela Falconia <falcon@freecalypso.org>
date Thu, 24 Sep 2020 21:03:08 +0000
parents 4d7c2ccb5814
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
124
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
1 # Building icn.lib from TCS211 source
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
2
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
3 CFLAGS="-me -mt -o -pw2 -x -mw"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
4 CPPFLAGS=
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
5
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
6 # Defines
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
7
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
8 CPPFLAGS=-DMMI_HOMEZONE_ENABLED
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
9 CPPFLAGS="$CPPFLAGS -DFF_MMI_SAT_ICON"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
10 CPPFLAGS="$CPPFLAGS -DFF_MMI_SMS_DYNAMIC"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
11
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
12 if [ "$GPRS" = 1 ]
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
13 then
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
14 CPPFLAGS="$CPPFLAGS -DMMI_GPRS_ENABLED"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
15 fi
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
16
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
17 CPPFLAGS="$CPPFLAGS -DMMI_EM_ENABLED"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
18 CPPFLAGS="$CPPFLAGS -DNO_ASCIIZ"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
19
452
4d7c2ccb5814 config mechanism: high-level UI config made separate from target display drivers
Mychaela Falconia <falcon@freecalypso.org>
parents: 451
diff changeset
20 case "$UI_CONFIG" in
4d7c2ccb5814 config mechanism: high-level UI config made separate from target display drivers
Mychaela Falconia <falcon@freecalypso.org>
parents: 451
diff changeset
21 bigcolor)
451
fd1d9063ad40 config mechanism: added ability to build D-Sample B&W UI configuration
Mychaela Falconia <falcon@freecalypso.org>
parents: 419
diff changeset
22 CPPFLAGS="$CPPFLAGS -DCOLOURDISPLAY"
452
4d7c2ccb5814 config mechanism: high-level UI config made separate from target display drivers
Mychaela Falconia <falcon@freecalypso.org>
parents: 451
diff changeset
23 CPPFLAGS="$CPPFLAGS -DLSCREEN"
4d7c2ccb5814 config mechanism: high-level UI config made separate from target display drivers
Mychaela Falconia <falcon@freecalypso.org>
parents: 451
diff changeset
24 ;;
4d7c2ccb5814 config mechanism: high-level UI config made separate from target display drivers
Mychaela Falconia <falcon@freecalypso.org>
parents: 451
diff changeset
25 bigbw)
4d7c2ccb5814 config mechanism: high-level UI config made separate from target display drivers
Mychaela Falconia <falcon@freecalypso.org>
parents: 451
diff changeset
26 CPPFLAGS="$CPPFLAGS -DLSCREEN"
4d7c2ccb5814 config mechanism: high-level UI config made separate from target display drivers
Mychaela Falconia <falcon@freecalypso.org>
parents: 451
diff changeset
27 ;;
4d7c2ccb5814 config mechanism: high-level UI config made separate from target display drivers
Mychaela Falconia <falcon@freecalypso.org>
parents: 451
diff changeset
28 84x48)
4d7c2ccb5814 config mechanism: high-level UI config made separate from target display drivers
Mychaela Falconia <falcon@freecalypso.org>
parents: 451
diff changeset
29 ;;
4d7c2ccb5814 config mechanism: high-level UI config made separate from target display drivers
Mychaela Falconia <falcon@freecalypso.org>
parents: 451
diff changeset
30 *)
4d7c2ccb5814 config mechanism: high-level UI config made separate from target display drivers
Mychaela Falconia <falcon@freecalypso.org>
parents: 451
diff changeset
31 echo "Error: UI_CONFIG=$UI_CONFIG setting not understood" 1>&2
4d7c2ccb5814 config mechanism: high-level UI config made separate from target display drivers
Mychaela Falconia <falcon@freecalypso.org>
parents: 451
diff changeset
32 exit 1
4d7c2ccb5814 config mechanism: high-level UI config made separate from target display drivers
Mychaela Falconia <falcon@freecalypso.org>
parents: 451
diff changeset
33 esac
124
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
34
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
35 CPPFLAGS="$CPPFLAGS -DINT_PHONEBOOK"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
36 CPPFLAGS="$CPPFLAGS -DNEW_EDITOR"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
37 CPPFLAGS="$CPPFLAGS -DTRGT_G23"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
38 CPPFLAGS="$CPPFLAGS -DAUS_CONDAT_TYPE_PORTING"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
39 CPPFLAGS="$CPPFLAGS -DCCDTABLES_EXTERN"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
40 CPPFLAGS="$CPPFLAGS -DOPTION_MULTITHREAD"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
41 CPPFLAGS="$CPPFLAGS -DNEW_FRAME"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
42 CPPFLAGS="$CPPFLAGS -DNEW_ENTITY"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
43 CPPFLAGS="$CPPFLAGS -D_TARGET_"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
44 CPPFLAGS="$CPPFLAGS -DSHARED_VSI"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
45 CPPFLAGS="$CPPFLAGS -DALR"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
46 CPPFLAGS="$CPPFLAGS -DFF_HOMEZONE"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
47 CPPFLAGS="$CPPFLAGS -DFF_MMI_SAT_ICON"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
48 CPPFLAGS="$CPPFLAGS -DFF_MMI_SMS_DYNAMIC"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
49 CPPFLAGS="$CPPFLAGS -DFF_CPHS"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
50 CPPFLAGS="$CPPFLAGS -D_TMS470"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
51 CPPFLAGS="$CPPFLAGS -DUART"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
52 CPPFLAGS="$CPPFLAGS -DFF_ATI"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
53 CPPFLAGS="$CPPFLAGS -DPHONEBOOK_EXTENSION"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
54
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
55 if [ "$GPRS" = 1 ]
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
56 then
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
57 CPPFLAGS="$CPPFLAGS -DGPRS"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
58 fi
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
59
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
60 CPPFLAGS="$CPPFLAGS -DFF_EM_MODE"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
61 CPPFLAGS="$CPPFLAGS -DMMI=2"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
62 CPPFLAGS="$CPPFLAGS -DMFW"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
63 CPPFLAGS="$CPPFLAGS -DAT_INTERPRETER"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
64 CPPFLAGS="$CPPFLAGS -DUSE_L1FD_FUNC_INTERFACE"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
65
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
66 if [ "$SRVC" != 0 ]
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
67 then
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
68 CPPFLAGS="$CPPFLAGS -DFAX_AND_DATA"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
69 if [ "$SRVC" = 1 ]
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
70 then
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
71 CPPFLAGS="$CPPFLAGS -DFF_FAX"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
72 fi
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
73 CPPFLAGS="$CPPFLAGS -DUSE_L2FD_FUNC_INTERFACE"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
74 fi
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
75
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
76 CPPFLAGS="$CPPFLAGS -DSRVC=$SRVC"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
77 CPPFLAGS="$CPPFLAGS -DNWARN"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
78
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
79 # Includes
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
80
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
81 CPPFLAGS="$CPPFLAGS -I$SRC/$CONDAT/com/inc"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
82 CPPFLAGS="$CPPFLAGS -I$SRC/$GPF/inc"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
83 CPPFLAGS="$CPPFLAGS -I$SRC/$CONDAT/com/include"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
84 CPPFLAGS="$CPPFLAGS -I../../$CDGINC"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
85 CPPFLAGS="$CPPFLAGS -I$SRC/aci2/bmi"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
86 CPPFLAGS="$CPPFLAGS -I$SRC/aci2/mfw"
419
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents: 378
diff changeset
87 CPPFLAGS="$CPPFLAGS -I$SRC/$ACI/aci"
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents: 378
diff changeset
88 CPPFLAGS="$CPPFLAGS -I$SRC/$ACI/ksd"
124
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
89 CPPFLAGS="$CPPFLAGS -I.."
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
90 CPPFLAGS="$CPPFLAGS -I../config"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
91 CPPFLAGS="$CPPFLAGS -I$SRC/cs/riviera"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
92 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_app"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
93 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
94 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/abb"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
95 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/armio"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
96 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/clkm"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
97 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/conf"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
98 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/dma"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
99 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/dsp_dwnld"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
100 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/inth"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
101 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/memif"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
102 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/rhea"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
103 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/security"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
104 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/spi"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
105 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/timer"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
106 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/uart"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
107 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/ulpd"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
108 CPPFLAGS="$CPPFLAGS -I$SRC/cs/system"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
109 CPPFLAGS="$CPPFLAGS -I$SRC/cs/layer1/include"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
110 CPPFLAGS="$CPPFLAGS -I$SRC/cs/services"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
111
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
112 # Source modules
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
113
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
114 SRCDIR=$SRC/aci2/bmi/Icons
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
115
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
116 cfile_str2ind $SRCDIR/IcnAniPhone.c
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
117 cfile_str2ind $SRCDIR/IcnBattery.c
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
118 cfile_str2ind $SRCDIR/IcnBgdSquares.c
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
119 cfile_str2ind $SRCDIR/IcnBgdTI.c
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
120 cfile_str2ind $SRCDIR/IcnCallBackGround.c
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
121 cfile_str2ind $SRCDIR/IcnCipher.c
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
122 cfile_str2ind $SRCDIR/IcnDefs.c
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
123 cfile_str2ind $SRCDIR/IcnForward.c
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
124 cfile_str2ind $SRCDIR/IcnGprs.c
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
125 cfile_str2ind $SRCDIR/IcnHomezone.c
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
126 cfile_str2ind $SRCDIR/IcnKeylock.c
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
127 cfile_str2ind $SRCDIR/IcnLogoTI.c
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
128 cfile_str2ind $SRCDIR/IcnMainApp.c
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
129 cfile_str2ind $SRCDIR/IcnMainDiv.c
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
130 cfile_str2ind $SRCDIR/IcnMainMsg.c
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
131 cfile_str2ind $SRCDIR/IcnMainPhb.c
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
132 cfile_str2ind $SRCDIR/IcnMainRcl.c
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
133 cfile_str2ind $SRCDIR/IcnMainSec.c
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
134 cfile_str2ind $SRCDIR/IcnMainSet.c
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
135 cfile_str2ind $SRCDIR/IcnMainStk.c
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
136 cfile_str2ind $SRCDIR/IcnMainWap.c
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
137 cfile_str2ind $SRCDIR/IcnMessage.c
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
138 cfile_str2ind $SRCDIR/IcnNetBouygues.c
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
139 cfile_str2ind $SRCDIR/IcnNetChinamobile.c
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
140 cfile_str2ind $SRCDIR/IcnNetFareast.c
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
141 cfile_str2ind $SRCDIR/IcnNetorange.c
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
142 cfile_str2ind $SRCDIR/IcnNetSFR.c
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
143 cfile_str2ind $SRCDIR/IcnNetsonofon.c
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
144 cfile_str2ind $SRCDIR/IcnNetTMobile.c
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
145 cfile_str2ind $SRCDIR/IcnNetVodafone.c
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
146 cfile_str2ind $SRCDIR/IcnNetVodafoneD2.c
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
147 cfile_str2ind $SRCDIR/IcnPopupBgd.c
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
148 cfile_str2ind $SRCDIR/IcnSignal.c
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
149 cfile_str2ind $SRCDIR/IcnVoicemail.c