comparison mgw/Makefile @ 101:ca21fbf9d2ea

mgw: implement G.711 encoding
author Mychaela Falconia <falcon@freecalypso.org>
date Mon, 26 Sep 2022 15:21:05 -0800
parents f280328e7e2e
children 3b3f07b112f3
comparison
equal deleted inserted replaced
100:1579ec0e9fb9 101:ca21fbf9d2ea
1 CC= gcc 1 CC= gcc
2 CFLAGS= -O2 2 CFLAGS= -O2
3 PROG= themwi-mgw 3 PROG= themwi-mgw
4 OBJS= crcx.o ctrl_prot.o ctrl_sock.o dlcx.o g711_decode.o main.o mdcx.o \ 4 OBJS= crcx.o ctrl_prot.o ctrl_sock.o dlcx.o g711_decode.o g711_encode.o \
5 pstn2gsm.o readconf.o udpsink.o 5 main.o mdcx.o pstn2gsm.o readconf.o udpsink.o
6 LIBS= ../libutil/libutil.a 6 LIBS= ../libutil/libutil.a
7 INSTBIN=/usr/local/bin 7 INSTBIN=/usr/local/bin
8 8
9 all: ${PROG} 9 all: ${PROG}
10 10