comparison test-fsk/Makefile @ 2:26383ed8b79f

test-fsk: starting as a copy of test-voice
author Mychaela Falconia <falcon@freecalypso.org>
date Mon, 04 Mar 2024 21:03:19 -0800
parents test-voice/Makefile@35c0d9f03c0a
children 030d52b96a23
comparison
equal deleted inserted replaced
1:38c4d09882f6 2:26383ed8b79f
1 CC= gcc
2 CFLAGS= -O2
3 PROG= sipout-test-fsk
4 OBJS= bye_in.o disc_cmd.o main.o readconf.o reinvite.o rtp_rx.o rtp_tx.o \
5 sdp_in.o sip_log.o sip_udp.o uac.o uas.o user_cmd.o
6 LIBS= ../libsip/libsip.a ../librtpalloc/librtpalloc.a ../libutil/libutil.a
7 INSTBIN=/opt/themwi/bin
8
9 all: ${PROG}
10
11 ${PROG}: ${OBJS} ${LIBS}
12 ${CC} ${CFLAGS} -o $@ ${OBJS} ${LIBS}
13
14 install:
15 install -c -m 755 ${PROG} ${INSTBIN}
16
17 clean:
18 rm -f *.o ${PROG} errs