view libutil/Makefile @ 53:fbedb67d234f

serial: fix parity for inverse coding convention Important note: it is my (Mother Mychaela's) understanding that SIM cards with inverse coding convention are extremely rare, and I have never seen such a card. Therefore, our support for the inverse coding convention will likely remain forever untested.
author Mychaela Falconia <falcon@freecalypso.org>
date Sun, 21 Mar 2021 20:46:09 +0000
parents ca8a6f95826a
children
line wrap: on
line source

CC=	gcc
CFLAGS=	-O2
OBJS=	alpha_decode.o alpha_fromfile.o alpha_valid.o dbread.o decimal_incr.o \
	decimal_str.o filesearch.o gsm7_decode.o gsm7_encode.o \
	gsm7_encode_table.o gsm7_pack.o gsm7_unpack.o hexdigits.o hexread.o \
	hexstr.o iccid_luhn.o nibbles2asc.o number_decode.o number_encode.o \
	pinentry.o plmncodes.o plmnlist.o revnibbles.o shorthand.o
LIB=	libutil.a

all:	${LIB}

${LIB}:	${OBJS}
	ar rcu $@ ${OBJS}
	ranlib $@

clean:
	rm -f *.[oa] errs