FreeCalypso > hg > sms-coding-utils
view gen-pdu/Makefile @ 31:19476164c54d
doc/SMS-PDU-decoding: document imported utilities
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Fri, 14 Jun 2024 18:48:58 +0000 |
parents | 2a19b44c272e |
children |
line wrap: on
line source
PROG= sms-gen-tpdu OBJS= auto_scts.o input.o main.o message.o settings.o LIBS= ../libcoding/libcoding.a include ../config.defs all: ${PROG} ${PROG}: ${OBJS} ${LIBS} ${CC} ${CFLAGS} -o $@ ${OBJS} ${LIBS} install: ${PROG} mkdir -p ${DESTDIR}${bindir} install -c ${PROG} ${DESTDIR}${bindir} clean: rm -f *.o *.out *errs ${PROG}