view simtool/Makefile @ 93:d4150123ca45

fc-simtool: some refactoring of SELECT response parsing
author Mychaela Falconia <falcon@freecalypso.org>
date Sun, 24 Jan 2021 20:25:04 +0000
parents 0ead9444a698
children a5dfab380a90
line wrap: on
line source

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

all:	${PROG}

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

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