FreeCalypso > hg > themwi-interim
comparison 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 |
comparison
equal
deleted
inserted
replaced
5:e7b192a5dee5 | 6:33d8b3177540 |
---|---|
1 CPPFLAGS=-I${includedir} | |
2 PROG= themwi-test-mtc | |
3 OBJS= disconnect.o main.o rtp_sink.o setup.o sig_handler.o sock_conn.o | |
4 LIBUTIL=../libutil/libutil.a | |
5 | |
6 include ../config.defs | |
7 | |
8 all: ${PROG} | |
9 | |
10 ${PROG}: ${OBJS} ${LIBUTIL} | |
11 ${CC} -o $@ ${OBJS} ${LIBUTIL} -L${libdir} -lrtpalloc -lnumdb -lnumutil | |
12 | |
13 install: | |
14 mkdir -p ${DESTDIR}${bindir} | |
15 install -c -m 755 ${PROG} ${DESTDIR}${bindir} | |
16 | |
17 clean: | |
18 rm -f *.o ${PROG} errs |