FreeCalypso > hg > themwi-system-sw
comparison 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 |
comparison
equal
deleted
inserted
replaced
221:e1d7db9d734c | 222:9d6e8d99d2b1 |
---|---|
1 CC= gcc | |
2 CFLAGS= -O2 | |
3 PROG= smpp-trx-sa | |
4 OBJS= localsock.o log.o main.o pdu_out.o tcpconn.o | |
5 LIBS= ../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 |