view enc-text/Makefile @ 27:7418ca2e9949

libcoding: add functions from freecalypso-tools/uptools/libcoding that are needed for sms-pdu-decode & pcm-sms-decode
author Mychaela Falconia <falcon@freecalypso.org>
date Thu, 13 Jun 2024 02:29:29 +0000
parents 2a19b44c272e
children
line wrap: on
line source

PROG=	sms-encode-text
OBJS=	concat_refno.o gsm7.o main.o ucs2.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}