FreeCalypso > hg > themwi-system-sw
comparison rtp-mgr/Makefile @ 179:b79d6334f543
themwi-rtp-mgr: RTP port allocation split out of themwi-mgw
| author | Mychaela Falconia <falcon@freecalypso.org> |
|---|---|
| date | Sat, 11 Mar 2023 20:19:14 -0800 |
| parents | mgw/Makefile@c985c33baeac |
| children | cdc807117841 |
comparison
equal
deleted
inserted
replaced
| 178:b259e2722485 | 179:b79d6334f543 |
|---|---|
| 1 CC= gcc | |
| 2 CFLAGS= -O2 | |
| 3 PROG= themwi-rtp-mgr | |
| 4 OBJS= alloc.o ctrl_prot.o ctrl_sock.o main.o readconf.o | |
| 5 LIBS= ../libutil/libutil.a | |
| 6 INSTBIN=/usr/local/bin | |
| 7 | |
| 8 all: ${PROG} | |
| 9 | |
| 10 ${PROG}: ${OBJS} ${LIBS} | |
| 11 ${CC} ${CFLAGS} -o $@ ${OBJS} ${LIBS} | |
| 12 | |
| 13 install: | |
| 14 install -c -o bin -g bin -m 755 ${PROG} ${INSTBIN} | |
| 15 | |
| 16 clean: | |
| 17 rm -f *.o ${PROG} errs |
