comparison smpp-send/Makefile @ 225:243ed87880a1

smpp-send: implement sending via local socket
author Mychaela Falconia <falcon@freecalypso.org>
date Sat, 05 Aug 2023 12:52:33 -0800
parents f11c3e40c87a
children cdc807117841
comparison
equal deleted inserted replaced
224:62184b971c8e 225:243ed87880a1
1 CC= gcc 1 CC= gcc
2 CFLAGS= -O2 2 CFLAGS= -O2
3 PROG= smpp-send 3 PROG= smpp-send
4 OBJS= build_pdu.o hexdump.o input.o main.o msg_cmd.o settings.o 4 OBJS= build_pdu.o hexdump.o input.o main.o msg_cmd.o settings.o sock_send.o
5 LIBS= ../libutil/libutil.a 5 LIBS= ../libutil/libutil.a
6 INSTBIN=/usr/local/bin 6 INSTBIN=/usr/local/bin
7 7
8 all: ${PROG} 8 all: ${PROG}
9 9