FreeCalypso > hg > themwi-system-sw
comparison smpp-send/Makefile @ 223:f11c3e40c87a
new program smpp-send
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sat, 05 Aug 2023 12:24:31 -0800 |
parents | smpp-trx-sa/Makefile@9d6e8d99d2b1 |
children | 243ed87880a1 |
comparison
equal
deleted
inserted
replaced
222:9d6e8d99d2b1 | 223:f11c3e40c87a |
---|---|
1 CC= gcc | |
2 CFLAGS= -O2 | |
3 PROG= smpp-send | |
4 OBJS= build_pdu.o hexdump.o input.o main.o msg_cmd.o settings.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 |