FreeCalypso > hg > fc-magnetite
comparison components/grlc @ 188:c08123e14970
grlc.lib compiles
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Thu, 13 Oct 2016 06:18:36 +0000 |
parents | |
children | ad7f986afae3 |
comparison
equal
deleted
inserted
replaced
187:907458d58a86 | 188:c08123e14970 |
---|---|
1 # Building grlc.lib from the TCS3.2 source | |
2 | |
3 CFLAGS="-me -mt -o -pw2 -x -mw" | |
4 | |
5 # Defines | |
6 | |
7 CPPFLAGS=-DCCDTABLES_EXTERN | |
8 CPPFLAGS="$CPPFLAGS -DOPTION_MULTITHREAD" | |
9 CPPFLAGS="$CPPFLAGS -DNEW_FRAME" | |
10 CPPFLAGS="$CPPFLAGS -DNEW_ENTITY" | |
11 CPPFLAGS="$CPPFLAGS -D_TARGET_" | |
12 CPPFLAGS="$CPPFLAGS -DSHARED_VSI" | |
13 CPPFLAGS="$CPPFLAGS -DALR" | |
14 CPPFLAGS="$CPPFLAGS -DFF_HOMEZONE" | |
15 CPPFLAGS="$CPPFLAGS -DFF_MMI_SAT_ICON" | |
16 CPPFLAGS="$CPPFLAGS -DFF_MMI_SMS_DYNAMIC" | |
17 CPPFLAGS="$CPPFLAGS -DFF_CPHS" | |
18 CPPFLAGS="$CPPFLAGS -D_TMS470" | |
19 CPPFLAGS="$CPPFLAGS -DUART" | |
20 CPPFLAGS="$CPPFLAGS -DFF_ATI" | |
21 CPPFLAGS="$CPPFLAGS -DNWARN" | |
22 CPPFLAGS="$CPPFLAGS -DFF_EM_MODE" | |
23 CPPFLAGS="$CPPFLAGS -DMMI=$MMI" | |
24 | |
25 if [ "$MMI" = 0 ] | |
26 then | |
27 CPPFLAGS="$CPPFLAGS -DACI" | |
28 elif [ "$MMI" = 2 ] | |
29 then | |
30 CPPFLAGS="$CPPFLAGS -DMFW" | |
31 fi | |
32 | |
33 CPPFLAGS="$CPPFLAGS -DPHONEBOOK_EXTENSION" | |
34 CPPFLAGS="$CPPFLAGS -DGPRS" | |
35 CPPFLAGS="$CPPFLAGS -DAT_INTERPRETER" | |
36 CPPFLAGS="$CPPFLAGS -DUSE_L1FD_FUNC_INTERFACE" | |
37 | |
38 if [ "$SRVC" != 0 ] | |
39 then | |
40 CPPFLAGS="$CPPFLAGS -DFAX_AND_DATA" | |
41 if [ "$SRVC" = 1 ] | |
42 then | |
43 CPPFLAGS="$CPPFLAGS -DFF_FAX" | |
44 fi | |
45 CPPFLAGS="$CPPFLAGS -DUSE_L2FD_FUNC_INTERFACE" | |
46 fi | |
47 | |
48 CPPFLAGS="$CPPFLAGS -DSRVC=$SRVC" | |
49 CPPFLAGS="$CPPFLAGS -DTRACE_FKT" | |
50 | |
51 # Includes | |
52 | |
53 SRCDIR=$SRC/g23m-gprs/grlc | |
54 | |
55 CPPFLAGS="$CPPFLAGS -I$SRC/$CONDAT/com/inc" | |
56 CPPFLAGS="$CPPFLAGS -I$SRC/$GPF/inc" | |
57 CPPFLAGS="$CPPFLAGS -I$SRC/$CONDAT/com/include" | |
58 CPPFLAGS="$CPPFLAGS -I../../$CDGINC" | |
59 CPPFLAGS="$CPPFLAGS -I$SRCDIR" | |
60 CPPFLAGS="$CPPFLAGS -I../../$CDGPRIM" | |
61 CPPFLAGS="$CPPFLAGS -I.." | |
62 CPPFLAGS="$CPPFLAGS -I../config" | |
63 | |
64 # Source modules | |
65 | |
66 cfile_str2ind $SRCDIR/grlc_f.c | |
67 cfile_str2ind $SRCDIR/grlc_gfff.c | |
68 cfile_str2ind $SRCDIR/grlc_gffp.c | |
69 cfile_str2ind $SRCDIR/grlc_gffs.c | |
70 cfile_str2ind $SRCDIR/grlc_measf.c | |
71 cfile_str2ind $SRCDIR/grlc_measp.c | |
72 cfile_str2ind $SRCDIR/grlc_meass.c | |
73 cfile_str2ind $SRCDIR/grlc_pei.c | |
74 cfile_str2ind $SRCDIR/grlc_rdf.c | |
75 cfile_str2ind $SRCDIR/grlc_rdp.c | |
76 cfile_str2ind $SRCDIR/grlc_rds.c | |
77 cfile_str2ind $SRCDIR/grlc_ruf.c | |
78 cfile_str2ind $SRCDIR/grlc_rup.c | |
79 cfile_str2ind $SRCDIR/grlc_rus.c | |
80 cfile_str2ind $SRCDIR/grlc_tmf.c | |
81 cfile_str2ind $SRCDIR/grlc_tmp.c | |
82 cfile_str2ind $SRCDIR/grlc_tms.c | |
83 cfile_str2ind $SRCDIR/grlc_tpcg.c | |
84 cfile_str2ind $SRCDIR/grlc_tpcs.c | |
85 cfile_str2ind $SRCDIR/grlc_em.c |