FreeCalypso > hg > themwi-system-sw
view smpp-trx-sa/Makefile @ 222:9d6e8d99d2b1
smpp-trx-sa: new program
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Thu, 03 Aug 2023 21:13:41 -0800 |
parents | |
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