FreeCalypso > hg > themwi-system-sw
annotate mtctest/Makefile @ 265:e4a93ad611f3
liboutrt: add prefix length output arg to route_e164_number()
| author | Mychaela Falconia <falcon@freecalypso.org> | 
|---|---|
| date | Mon, 13 Nov 2023 15:09:10 -0800 | 
| parents | cdc807117841 | 
| children | 
| rev | line source | 
|---|---|
| 21 
cc0e1c6e33c3
themwi-test-mtc utility written, compiles
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 1 CC= gcc | 
| 
cc0e1c6e33c3
themwi-test-mtc utility written, compiles
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 2 CFLAGS= -O2 | 
| 
cc0e1c6e33c3
themwi-test-mtc utility written, compiles
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 3 PROG= themwi-test-mtc | 
| 36 
e8e82a4bf12b
themwi-test-mtc: implement dummy RTP via themwi-mgw
 Mychaela Falconia <falcon@freecalypso.org> parents: 
21diff
changeset | 4 OBJS= disconnect.o dummy_rtp.o main.o setup.o sig_handler.o sock_conn.o | 
| 246 
74dae755f85a
themwi-test-mtc: convert to libnumdb2
 Mychaela Falconia <falcon@freecalypso.org> parents: 
36diff
changeset | 5 LIBS= ../libnumdb2/libnumdb.a ../libutil/libutil.a | 
| 264 
cdc807117841
*/Makefile: change INSTBIN to /opt/themwi/bin (was /usr/local/bin)
 Mychaela Falconia <falcon@freecalypso.org> parents: 
246diff
changeset | 6 INSTBIN=/opt/themwi/bin | 
| 21 
cc0e1c6e33c3
themwi-test-mtc utility written, compiles
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 7 | 
| 
cc0e1c6e33c3
themwi-test-mtc utility written, compiles
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 8 all: ${PROG} | 
| 
cc0e1c6e33c3
themwi-test-mtc utility written, compiles
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 9 | 
| 
cc0e1c6e33c3
themwi-test-mtc utility written, compiles
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 10 ${PROG}: ${OBJS} ${LIBS} | 
| 
cc0e1c6e33c3
themwi-test-mtc utility written, compiles
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 11 ${CC} ${CFLAGS} -o $@ ${OBJS} ${LIBS} | 
| 
cc0e1c6e33c3
themwi-test-mtc utility written, compiles
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 12 | 
| 
cc0e1c6e33c3
themwi-test-mtc utility written, compiles
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 13 install: | 
| 264 
cdc807117841
*/Makefile: change INSTBIN to /opt/themwi/bin (was /usr/local/bin)
 Mychaela Falconia <falcon@freecalypso.org> parents: 
246diff
changeset | 14 install -c -m 755 ${PROG} ${INSTBIN} | 
| 21 
cc0e1c6e33c3
themwi-test-mtc utility written, compiles
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 15 | 
| 
cc0e1c6e33c3
themwi-test-mtc utility written, compiles
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 16 clean: | 
| 
cc0e1c6e33c3
themwi-test-mtc utility written, compiles
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 17 rm -f *.o ${PROG} errs | 
