FreeCalypso > hg > themwi-system-sw
comparison utils/Makefile @ 17:4e0a73be9e37
sip-udp-dump utility written, compiles
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sun, 26 Jun 2022 18:12:32 -0800 |
parents | aea422af79dd |
children | 891ebfb55e6b |
comparison
equal
deleted
inserted
replaced
16:4c2000b3aed7 | 17:4e0a73be9e37 |
---|---|
1 CC= gcc | 1 CC= gcc |
2 CFLAGS= -O2 | 2 CFLAGS= -O2 |
3 PROGS= themwi-check-own themwi-dump-numdb themwi-short-dial themwi-update-numdb | 3 PROGS= sip-udp-dump themwi-check-own themwi-dump-numdb themwi-short-dial \ |
4 themwi-update-numdb | |
4 LIBNUMDB=../libnumdb/libnumdb.a | 5 LIBNUMDB=../libnumdb/libnumdb.a |
5 LIBUTIL=../libutil/libutil.a | 6 LIBUTIL=../libutil/libutil.a |
6 INSTBIN=/usr/local/bin | 7 INSTBIN=/usr/local/bin |
7 | 8 |
8 all: ${PROGS} | 9 all: ${PROGS} |
10 | |
11 sip-udp-dump: sip-udp-dump.c | |
12 ${CC} ${CFLAGS} -o $@ $@.c | |
9 | 13 |
10 themwi-check-own: themwi-check-own.o ${LIBNUMDB} ${LIBUTIL} | 14 themwi-check-own: themwi-check-own.o ${LIBNUMDB} ${LIBUTIL} |
11 ${CC} ${CFLAGS} -o $@ $@.o ${LIBNUMDB} ${LIBUTIL} | 15 ${CC} ${CFLAGS} -o $@ $@.o ${LIBNUMDB} ${LIBUTIL} |
12 | 16 |
13 themwi-dump-numdb: themwi-dump-numdb.c | 17 themwi-dump-numdb: themwi-dump-numdb.c |