view pcsc/Makefile @ 83:3055d5c9e7a3

fc-simtool update-rec* commands: check curfile_record_len and error out if it is not set
author Mychaela Falconia <falcon@freecalypso.org>
date Sun, 11 Apr 2021 02:38:31 +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