FreeCalypso > hg > freecalypso-hwlab
view simtool/Makefile @ 89:fb75855a74a9
fc-simtool: select response parsing: show number of records
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sun, 24 Jan 2021 18:03:55 +0000 |
parents | 91486a77643e |
children | 53e2c00566af |
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 select.o all: ${PROG} ${PROG}: ${OBJS} ${CC} ${CFLAGS} -o $@ ${OBJS} -lpcsclite clean: rm -f ${PROG} *.o