view uicc/Makefile @ 134:69628bcfec17

fc-uicc-tool: iccid command implemented
author Mychaela Falconia <falcon@freecalypso.org>
date Thu, 04 Feb 2021 02:28:52 +0000
parents f3bdefbeae38
children 51d6aaa43a7b
line wrap: on
line source

CC=	gcc
CFLAGS=	-O2 -I/usr/include/PCSC
PROG=	fc-uicc-tool
OBJS=	apdu.o atr.o cardconnect.o dispatch.o exit.o globals.o hexdump.o \
	hlread.o main.o names.o readcmd.o readops.o script.o select.o

all:	${PROG}

${PROG}:	${OBJS}
	${CC} ${CFLAGS} -o $@ ${OBJS} -lpcsclite

clean:
	rm -f ${PROG} *.o