FreeCalypso > hg > sipout-test-utils
view test-voice/Makefile @ 1:38c4d09882f6
add top Makefile
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sun, 03 Mar 2024 23:25:15 -0800 |
parents | 35c0d9f03c0a |
children | 4f81b959a5f5 |
line wrap: on
line source
CC= gcc CFLAGS= -O2 PROG= sipout-test-voice OBJS= bye_in.o disc_cmd.o main.o readconf.o reinvite.o rtp_rx.o rtp_tx.o \ sdp_in.o sip_log.o sip_udp.o uac.o uas.o user_cmd.o LIBS= ../libsip/libsip.a ../librtpalloc/librtpalloc.a ../libutil/libutil.a INSTBIN=/opt/themwi/bin all: ${PROG} ${PROG}: ${OBJS} ${LIBS} ${CC} ${CFLAGS} -o $@ ${OBJS} ${LIBS} install: install -c -m 755 ${PROG} ${INSTBIN} clean: rm -f *.o ${PROG} errs