FreeCalypso > hg > freecalypso-tools
diff uptools/atcmd/Makefile @ 373:1fa4dcbb1c87
fcup-smsendmult program written, compiles
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Thu, 08 Mar 2018 19:47:40 +0000 |
parents | 1e7c6fcb9abe |
children | a38805b5b6d4 |
line wrap: on
line diff
--- a/uptools/atcmd/Makefile Thu Mar 08 18:13:38 2018 +0000 +++ b/uptools/atcmd/Makefile Thu Mar 08 19:47:40 2018 +0000 @@ -1,6 +1,6 @@ CC= gcc CFLAGS= -O2 -PROGS= fcup-at fcup-smdump fcup-smsend +PROGS= fcup-at fcup-smdump fcup-smsend fcup-smsendmult INSTBIN=/opt/freecalypso/bin LIBCODING= ../libcoding/libcoding.a @@ -12,6 +12,9 @@ SMSEND_OBJS= atinterf.o resp_parse.o smsend_cmgw.o smsend_concat.o \ smsend_main.o smsend_pduout.o smsend_text.o ${LIBCODING} +SMSENDM_OBJS= atinterf.o resp_parse.o smsend_cmgw.o smsend_multmain.o \ + smsend_pduout.o smsend_text.o ${LIBCODING} + all: ${PROGS} fcup-at: ${ATCMD_OBJS} @@ -23,6 +26,9 @@ fcup-smsend: ${SMSEND_OBJS} ${CC} ${CFLAGS} -o $@ ${SMSEND_OBJS} +fcup-smsendmult: ${SMSENDM_OBJS} + ${CC} ${CFLAGS} -o $@ ${SMSENDM_OBJS} + install: ${PROGS} mkdir -p ${INSTBIN} install -c ${PROGS} ${INSTBIN}