FreeCalypso > hg > themwi-system-sw
comparison sip-in/Makefile @ 47:62f39c7cee15
themwi-sip-in skeleton started
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Tue, 06 Sep 2022 20:33:56 -0800 |
parents | |
children | 8117d8ee44a5 |
comparison
equal
deleted
inserted
replaced
46:5427b26525cd | 47:62f39c7cee15 |
---|---|
1 CC= gcc | |
2 CFLAGS= -O2 | |
3 PROG= themwi-sip-in | |
4 OBJS= main.o mgw_sock.o readconf.o sip_log.o sip_uas.o sip_udp.o | |
5 LIBS= ../libnumdb/libnumdb.a ../libsip/libsip.a ../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 |