FreeCalypso > hg > themwi-system-sw
annotate mgw/Makefile @ 131:5c7109183c8c
shorten new program name to themwi-update-outrt
| author | Mychaela Falconia <falcon@freecalypso.org> | 
|---|---|
| date | Thu, 06 Oct 2022 21:19:59 -0800 | 
| parents | f062c32a5116 | 
| children | 8c28426abef0 | 
| rev | line source | 
|---|---|
| 32 
b3f74df7b808
beginning of themwi-mgw
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 1 CC= gcc | 
| 
b3f74df7b808
beginning of themwi-mgw
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 2 CFLAGS= -O2 | 
| 
b3f74df7b808
beginning of themwi-mgw
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 3 PROG= themwi-mgw | 
| 127 
f062c32a5116
mgw: implement DTMF
 Mychaela Falconia <falcon@freecalypso.org> parents: 
126diff
changeset | 4 OBJS= crcx.o ctrl_prot.o ctrl_sock.o dlcx.o dtmf_ctrl.o dtmf_init.o \ | 
| 
f062c32a5116
mgw: implement DTMF
 Mychaela Falconia <falcon@freecalypso.org> parents: 
126diff
changeset | 5 dtmf_table.o dtmf_timer.o g711_decode.o g711_encode.o gsm2pstn.o main.o\ | 
| 
f062c32a5116
mgw: implement DTMF
 Mychaela Falconia <falcon@freecalypso.org> parents: 
126diff
changeset | 6 mdcx.o pstn2gsm.o readconf.o udpsink.o | 
| 32 
b3f74df7b808
beginning of themwi-mgw
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 7 LIBS= ../libutil/libutil.a | 
| 
b3f74df7b808
beginning of themwi-mgw
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 8 INSTBIN=/usr/local/bin | 
| 
b3f74df7b808
beginning of themwi-mgw
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 9 | 
| 
b3f74df7b808
beginning of themwi-mgw
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 10 all: ${PROG} | 
| 
b3f74df7b808
beginning of themwi-mgw
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 11 | 
| 
b3f74df7b808
beginning of themwi-mgw
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 12 ${PROG}: ${OBJS} ${LIBS} | 
| 126 
815e4c59162e
mgw DTMF: tone definitions and sample array generation
 Mychaela Falconia <falcon@freecalypso.org> parents: 
103diff
changeset | 13 ${CC} ${CFLAGS} -o $@ ${OBJS} ${LIBS} -lgsm -lm | 
| 32 
b3f74df7b808
beginning of themwi-mgw
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 14 | 
| 
b3f74df7b808
beginning of themwi-mgw
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 15 install: | 
| 
b3f74df7b808
beginning of themwi-mgw
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 16 install -c -o bin -g bin -m 755 ${PROG} ${INSTBIN} | 
| 
b3f74df7b808
beginning of themwi-mgw
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 17 | 
| 
b3f74df7b808
beginning of themwi-mgw
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 18 clean: | 
| 
b3f74df7b808
beginning of themwi-mgw
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 19 rm -f *.o ${PROG} errs | 
