FreeCalypso > hg > freecalypso-hwlab
view simtool/Makefile @ 100:fa7005185b84
fc-simtool: restore-file command implemented
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Mon, 25 Jan 2021 01:23:54 +0000 |
parents | 2e35070d289f |
children | 454ff8bd0b83 |
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 hlread.o \ main.o names.o readcmd.o readops.o saverestore.o select.o telsum.o \ writeops.o all: ${PROG} ${PROG}: ${OBJS} ${CC} ${CFLAGS} -o $@ ${OBJS} -lpcsclite clean: rm -f ${PROG} *.o