comparison utils/Makefile @ 131:5c7109183c8c

shorten new program name to themwi-update-outrt
author Mychaela Falconia <falcon@freecalypso.org>
date Thu, 06 Oct 2022 21:19:59 -0800
parents 44dc809ffec0
children 857d78c58f56
comparison
equal deleted inserted replaced
130:44dc809ffec0 131:5c7109183c8c
1 CC= gcc 1 CC= gcc
2 CFLAGS= -O2 2 CFLAGS= -O2
3 PROGS= sip-out-test sip-rx-test sip-udp-dump themwi-check-own \ 3 PROGS= sip-out-test sip-rx-test sip-udp-dump themwi-check-own \
4 themwi-dump-numdb themwi-short-dial themwi-update-numdb \ 4 themwi-dump-numdb themwi-short-dial themwi-update-numdb \
5 themwi-update-out-routes 5 themwi-update-outrt
6 LIBNUMDB=../libnumdb/libnumdb.a 6 LIBNUMDB=../libnumdb/libnumdb.a
7 LIBSIP= ../libsip/libsip.a 7 LIBSIP= ../libsip/libsip.a
8 LIBUTIL=../libutil/libutil.a 8 LIBUTIL=../libutil/libutil.a
9 INSTBIN=/usr/local/bin 9 INSTBIN=/usr/local/bin
10 10
29 ${CC} ${CFLAGS} -o $@ $@.o ${LIBNUMDB} ${LIBUTIL} 29 ${CC} ${CFLAGS} -o $@ $@.o ${LIBNUMDB} ${LIBUTIL}
30 30
31 themwi-update-numdb: themwi-update-numdb.o ${LIBUTIL} 31 themwi-update-numdb: themwi-update-numdb.o ${LIBUTIL}
32 ${CC} ${CFLAGS} -o $@ $@.o ${LIBUTIL} 32 ${CC} ${CFLAGS} -o $@ $@.o ${LIBUTIL}
33 33
34 themwi-update-out-routes: themwi-update-out-routes.o ${LIBUTIL} 34 themwi-update-outrt: themwi-update-outrt.o ${LIBUTIL}
35 ${CC} ${CFLAGS} -o $@ $@.o ${LIBUTIL} 35 ${CC} ${CFLAGS} -o $@ $@.o ${LIBUTIL}
36 36
37 install: 37 install:
38 install -c -o bin -g bin -m 755 ${PROGS} ${INSTBIN} 38 install -c -o bin -g bin -m 755 ${PROGS} ${INSTBIN}
39 39