FreeCalypso > hg > freecalypso-hwlab
view simtool/Makefile @ 91:226b231d00f3
fc-simtool: readrec command implemented
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sun, 24 Jan 2021 18:46:11 +0000 |
parents | 53e2c00566af |
children | 0ead9444a698 |
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 select.o all: ${PROG} ${PROG}: ${OBJS} ${CC} ${CFLAGS} -o $@ ${OBJS} -lpcsclite clean: rm -f ${PROG} *.o