FreeCalypso > hg > themwi-interim
diff mtctest/Makefile @ 6:33d8b3177540
mtctest compiles in the new environment
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sun, 09 Jun 2024 01:55:28 +0000 |
parents | mncc/Makefile@847690ea7f4a |
children | a902ccbf6bbc |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mtctest/Makefile Sun Jun 09 01:55:28 2024 +0000 @@ -0,0 +1,18 @@ +CPPFLAGS=-I${includedir} +PROG= themwi-test-mtc +OBJS= disconnect.o main.o rtp_sink.o setup.o sig_handler.o sock_conn.o +LIBUTIL=../libutil/libutil.a + +include ../config.defs + +all: ${PROG} + +${PROG}: ${OBJS} ${LIBUTIL} + ${CC} -o $@ ${OBJS} ${LIBUTIL} -L${libdir} -lrtpalloc -lnumdb -lnumutil + +install: + mkdir -p ${DESTDIR}${bindir} + install -c -m 755 ${PROG} ${DESTDIR}${bindir} + +clean: + rm -f *.o ${PROG} errs