annotate components/icn-tcs3 @ 452:4d7c2ccb5814

config mechanism: high-level UI config made separate from target display drivers
author Mychaela Falconia <falcon@freecalypso.org>
date Wed, 14 Mar 2018 07:22:05 +0000
parents fd1d9063ad40
children ad7f986afae3
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
431
b006702b48ca components/icn-tcs3: recipe created, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents: 419
diff changeset
1 # Building icn.lib from TCS3/LoCosto source
124
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: 431
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"
431
b006702b48ca components/icn-tcs3: recipe created, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents: 419
diff changeset
85 CPPFLAGS="$CPPFLAGS -I$SRC/ui3/bmi"
b006702b48ca components/icn-tcs3: recipe created, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents: 419
diff changeset
86 CPPFLAGS="$CPPFLAGS -I$SRC/ui3/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
431
b006702b48ca components/icn-tcs3: recipe created, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents: 419
diff changeset
114 SRCDIR=$SRC/ui3/bmi/Icons
124
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