FreeCalypso > hg > fc-selenite
comparison components/sndcp @ 10:a8f9cc376e98
components: pruned import from Magnetite
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sun, 15 Jul 2018 21:19:43 +0000 |
parents | |
children | 0a1a78944683 |
comparison
equal
deleted
inserted
replaced
9:6da1d56a96a3 | 10:a8f9cc376e98 |
---|---|
1 # Building sndcp.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 -DAT_INTERPRETER" | |
24 CPPFLAGS="$CPPFLAGS -DUSE_L1FD_FUNC_INTERFACE" | |
25 | |
26 if [ "$SRVC" != 0 ] | |
27 then | |
28 CPPFLAGS="$CPPFLAGS -DFAX_AND_DATA" | |
29 if [ "$SRVC" = 1 ] | |
30 then | |
31 CPPFLAGS="$CPPFLAGS -DFF_FAX" | |
32 fi | |
33 CPPFLAGS="$CPPFLAGS -DUSE_L2FD_FUNC_INTERFACE" | |
34 fi | |
35 | |
36 CPPFLAGS="$CPPFLAGS -DSRVC=$SRVC" | |
37 CPPFLAGS="$CPPFLAGS -DMMI=$MMI" | |
38 | |
39 if [ "$MMI" = 0 ] | |
40 then | |
41 CPPFLAGS="$CPPFLAGS -DACI" | |
42 elif [ "$MMI" = 2 ] | |
43 then | |
44 CPPFLAGS="$CPPFLAGS -DMFW" | |
45 fi | |
46 | |
47 CPPFLAGS="$CPPFLAGS -DPHONEBOOK_EXTENSION" | |
48 CPPFLAGS="$CPPFLAGS -DGPRS" | |
49 CPPFLAGS="$CPPFLAGS -DDTI2" | |
50 CPPFLAGS="$CPPFLAGS -D_SNDCP_DTI_" | |
51 CPPFLAGS="$CPPFLAGS -D_SNDCP_DTI_2_" | |
52 CPPFLAGS="$CPPFLAGS -DCHIPSET=$CHIPSET" | |
53 CPPFLAGS="$CPPFLAGS -DBOARD=41" | |
54 | |
55 # Includes | |
56 | |
57 CPPFLAGS="$CPPFLAGS -I$SRC/$CONDAT/com/inc" | |
58 CPPFLAGS="$CPPFLAGS -I$SRC/$GPF/inc" | |
59 CPPFLAGS="$CPPFLAGS -I$SRC/$CONDAT/com/include" | |
60 CPPFLAGS="$CPPFLAGS -I../../$CDGINC" | |
61 CPPFLAGS="$CPPFLAGS -I../../$CDGPRIM" | |
62 CPPFLAGS="$CPPFLAGS -I$SRC/g23m-gprs/dti" | |
63 CPPFLAGS="$CPPFLAGS -I$SRC/g23m-gprs/sndcp" | |
64 CPPFLAGS="$CPPFLAGS -I.." | |
65 CPPFLAGS="$CPPFLAGS -I../config" | |
66 | |
67 # Source modules | |
68 | |
69 SRCDIR=$SRC/g23m-gprs/sndcp | |
70 | |
71 cfile_str2ind $SRCDIR/sndcp_f.c | |
72 cfile_str2ind $SRCDIR/sndcp_mgf.c | |
73 cfile_str2ind $SRCDIR/sndcp_mgp.c | |
74 cfile_str2ind $SRCDIR/sndcp_mgs.c | |
75 cfile_str2ind $SRCDIR/sndcp_ndf.c | |
76 cfile_str2ind $SRCDIR/sndcp_ndp.c | |
77 cfile_str2ind $SRCDIR/sndcp_nds.c | |
78 cfile_str2ind $SRCDIR/sndcp_nuf.c | |
79 cfile_str2ind $SRCDIR/sndcp_nup.c | |
80 cfile_str2ind $SRCDIR/sndcp_nus.c | |
81 cfile_str2ind $SRCDIR/sndcp_pdaf.c | |
82 cfile_str2ind $SRCDIR/sndcp_pdap.c | |
83 cfile_str2ind $SRCDIR/sndcp_pdas.c | |
84 cfile_str2ind $SRCDIR/sndcp_pdf.c | |
85 cfile_str2ind $SRCDIR/sndcp_pdp.c | |
86 cfile_str2ind $SRCDIR/sndcp_pds.c | |
87 cfile_str2ind $SRCDIR/sndcp_pei.c | |
88 cfile_str2ind $SRCDIR/sndcp_sdaf.c | |
89 cfile_str2ind $SRCDIR/sndcp_sdap.c | |
90 cfile_str2ind $SRCDIR/sndcp_sdas.c | |
91 cfile_str2ind $SRCDIR/sndcp_sdf.c | |
92 cfile_str2ind $SRCDIR/sndcp_sdp.c | |
93 cfile_str2ind $SRCDIR/sndcp_sds.c | |
94 cfile_str2ind $SRCDIR/sndcp_suaf.c | |
95 cfile_str2ind $SRCDIR/sndcp_suap.c | |
96 cfile_str2ind $SRCDIR/sndcp_suas.c | |
97 cfile_str2ind $SRCDIR/sndcp_suf.c | |
98 cfile_str2ind $SRCDIR/sndcp_sup.c | |
99 cfile_str2ind $SRCDIR/sndcp_ciap.c | |
100 cfile_str2ind $SRCDIR/sndcp_ciaf.c | |
101 cfile_str2ind $SRCDIR/sndcp_cias.c | |
102 cfile_str2ind $SRCDIR/sndcp_sus.c |