FreeCalypso > hg > themwi-system-sw
annotate rtp-mgr/Makefile @ 275:def9f6e4f49e default tip
doc/Use-outside-USA: Fake-NANP-numbers article is here
| author | Mychaela Falconia <falcon@freecalypso.org> | 
|---|---|
| date | Mon, 27 Nov 2023 21:49:19 -0800 | 
| parents | cdc807117841 | 
| children | 
| rev | line source | 
|---|---|
| 32 
b3f74df7b808
beginning of themwi-mgw
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 1 CC= gcc | 
| 
b3f74df7b808
beginning of themwi-mgw
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 2 CFLAGS= -O2 | 
| 179 
b79d6334f543
themwi-rtp-mgr: RTP port allocation split out of themwi-mgw
 Mychaela Falconia <falcon@freecalypso.org> parents: 
174diff
changeset | 3 PROG= themwi-rtp-mgr | 
| 
b79d6334f543
themwi-rtp-mgr: RTP port allocation split out of themwi-mgw
 Mychaela Falconia <falcon@freecalypso.org> parents: 
174diff
changeset | 4 OBJS= alloc.o ctrl_prot.o ctrl_sock.o main.o readconf.o | 
| 32 
b3f74df7b808
beginning of themwi-mgw
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 5 LIBS= ../libutil/libutil.a | 
| 264 
cdc807117841
*/Makefile: change INSTBIN to /opt/themwi/bin (was /usr/local/bin)
 Mychaela Falconia <falcon@freecalypso.org> parents: 
179diff
changeset | 6 INSTBIN=/opt/themwi/bin | 
| 32 
b3f74df7b808
beginning of themwi-mgw
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 7 | 
| 
b3f74df7b808
beginning of themwi-mgw
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 8 all: ${PROG} | 
| 
b3f74df7b808
beginning of themwi-mgw
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 9 | 
| 
b3f74df7b808
beginning of themwi-mgw
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 10 ${PROG}: ${OBJS} ${LIBS} | 
| 179 
b79d6334f543
themwi-rtp-mgr: RTP port allocation split out of themwi-mgw
 Mychaela Falconia <falcon@freecalypso.org> parents: 
174diff
changeset | 11 ${CC} ${CFLAGS} -o $@ ${OBJS} ${LIBS} | 
| 32 
b3f74df7b808
beginning of themwi-mgw
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 12 | 
| 
b3f74df7b808
beginning of themwi-mgw
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 13 install: | 
| 264 
cdc807117841
*/Makefile: change INSTBIN to /opt/themwi/bin (was /usr/local/bin)
 Mychaela Falconia <falcon@freecalypso.org> parents: 
179diff
changeset | 14 install -c -m 755 ${PROG} ${INSTBIN} | 
| 32 
b3f74df7b808
beginning of themwi-mgw
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 15 | 
| 
b3f74df7b808
beginning of themwi-mgw
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 16 clean: | 
| 
b3f74df7b808
beginning of themwi-mgw
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 17 rm -f *.o ${PROG} errs | 
