diff uptools/atcmd/Makefile @ 384:3eb92855f7b9

fcup-smsendpdu program written, compiles
author Mychaela Falconia <falcon@freecalypso.org>
date Fri, 09 Mar 2018 03:29:40 +0000
parents a38805b5b6d4
children ce3b57b8920b
line wrap: on
line diff
--- a/uptools/atcmd/Makefile	Fri Mar 09 02:56:09 2018 +0000
+++ b/uptools/atcmd/Makefile	Fri Mar 09 03:29:40 2018 +0000
@@ -1,6 +1,6 @@
 CC=	gcc
 CFLAGS=	-O2
-PROGS=	fcup-at fcup-smdump fcup-smsend fcup-smsendmult
+PROGS=	fcup-at fcup-smdump fcup-smsend fcup-smsendmult fcup-smsendpdu
 INSTBIN=/opt/freecalypso/bin
 
 LIBCODING=	../libcoding/libcoding.a
@@ -16,6 +16,9 @@
 SMSENDM_OBJS=	atinterf.o resp_parse.o smsend_cmgw.o smsend_multmain.o \
 		smsend_pdugen.o smsend_pduout.o smsend_text.o ${LIBCODING}
 
+SMSENDP_OBJS=	atinterf.o resp_parse.o smsend_cmgw.o smsend_pduin.o \
+		smsend_pduout.o ${LIBCODING}
+
 all:	${PROGS}
 
 fcup-at:	${ATCMD_OBJS}
@@ -30,6 +33,9 @@
 fcup-smsendmult:	${SMSENDM_OBJS}
 	${CC} ${CFLAGS} -o $@ ${SMSENDM_OBJS}
 
+fcup-smsendpdu:	${SMSENDP_OBJS}
+	${CC} ${CFLAGS} -o $@ ${SMSENDP_OBJS}
+
 install:	${PROGS}
 	mkdir -p ${INSTBIN}
 	install -c ${PROGS} ${INSTBIN}