FreeCalypso > hg > ice1-trau-tester
comparison pcm-br/Makefile @ 35:499d065ee591
new program itt-pcm-br (PCM bridge)
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Wed, 28 Aug 2024 05:00:38 +0000 |
parents | pcm/Makefile@ca351324187a |
children |
comparison
equal
deleted
inserted
replaced
34:f0b026615f3b | 35:499d065ee591 |
---|---|
1 PROG= itt-pcm-br | |
2 OBJS= main.o record_ctrl.o showbuf.o user_cmd.o xconn.o | |
3 LIBUTIL=../libutil/libutil.a | |
4 | |
5 include ../config.defs | |
6 | |
7 CPPFLAGS=${OSMO_INCLUDE} | |
8 OSMO_LINK=${OSMO_LPATH} ${OSMO_RPATH} ${OSMO_LIBS} | |
9 | |
10 all: ${PROG} | |
11 | |
12 ${OBJS}: globals.h | |
13 | |
14 ${PROG}: ${OBJS} ${LIBUTIL} | |
15 ${CC} -o $@ ${OBJS} ${LIBUTIL} ${OSMO_LINK} | |
16 | |
17 install: | |
18 mkdir -p ${DESTDIR}${bindir} | |
19 install -c -m 755 ${PROG} ${DESTDIR}${bindir} | |
20 | |
21 clean: | |
22 rm -f *.o ${PROG} errs |