view pcsc/Makefile @ 93:6041c601304d

fcsim1-mkprov: revert OTA key addition It appears that GrcardSIM2 cards (which is what we got for FCSIM1) do not support OTA after all, contrary to what we were previously led to believe by some tech support emails from Grcard - apparently those support emails and OTA descriptions referred to some other card model(s).
author Mychaela Falconia <falcon@freecalypso.org>
date Wed, 21 Apr 2021 05:38:39 +0000
parents 45ea06eaa9fd
children
line wrap: on
line source

CC=	gcc
CFLAGS=	-O2 -I/usr/include/PCSC
PROGS=	fc-pcsc-atr fc-pcsc-backend fc-pcsc-list

INSTALL_PREFIX=	/opt/freecalypso

INSTBIN=${INSTALL_PREFIX}/bin

ATR_OBJS=	atrfunc.o atrmain.o connect.o context.o rdselect.o
MAIN_OBJS=	atrfunc.o connect.o context.o main.o rdselect.o
LIST_OBJS=	context.o rdlist.o

all:	${PROGS}

fc-pcsc-atr:	${ATR_OBJS}
	${CC} ${CFLAGS} -o $@ ${ATR_OBJS} -lpcsclite

fc-pcsc-backend:	${MAIN_OBJS}
	${CC} ${CFLAGS} -o $@ ${MAIN_OBJS} -lpcsclite

fc-pcsc-list:	${LIST_OBJS}
	${CC} ${CFLAGS} -o $@ ${LIST_OBJS} -lpcsclite

install:
	mkdir -p ${INSTBIN}
	install -c ${PROGS} ${INSTBIN}

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