FreeCalypso > hg > themwi-system-sw
view smpp-trx-sa/Makefile @ 257:cb440d003976
sip-out: add libnumdb2 infra in prep for E911 routing
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Tue, 15 Aug 2023 10:50:37 -0800 |
parents | 9d6e8d99d2b1 |
children | 1bf989f60aa3 |
line wrap: on
line source
CC= gcc CFLAGS= -O2 PROG= smpp-trx-sa OBJS= localsock.o log.o main.o pdu_out.o tcpconn.o LIBS= ../libutil/libutil.a INSTBIN=/usr/local/bin all: ${PROG} ${PROG}: ${OBJS} ${LIBS} ${CC} ${CFLAGS} -o $@ ${OBJS} ${LIBS} install: install -c -o bin -g bin -m 755 ${PROG} ${INSTBIN} clean: rm -f *.o ${PROG} errs