FreeCalypso > hg > freecalypso-hwlab
comparison simtool/Makefile @ 98:66c0cb0e9876
fc-simtool: telecom-sum (summary info) command implemented
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sun, 24 Jan 2021 22:46:41 +0000 |
parents | a5dfab380a90 |
children | 2e35070d289f |
comparison
equal
deleted
inserted
replaced
97:597c4e87a1f4 | 98:66c0cb0e9876 |
---|---|
1 CC= gcc | 1 CC= gcc |
2 CFLAGS= -O2 -I/usr/include/PCSC | 2 CFLAGS= -O2 -I/usr/include/PCSC |
3 PROG= fc-simtool | 3 PROG= fc-simtool |
4 OBJS= apdu.o atr.o cardconnect.o dispatch.o globals.o hexdump.o hlread.o \ | 4 OBJS= apdu.o atr.o cardconnect.o dispatch.o globals.o hexdump.o hlread.o \ |
5 main.o names.o readcmd.o readops.o select.o | 5 main.o names.o readcmd.o readops.o select.o telsum.o |
6 | 6 |
7 all: ${PROG} | 7 all: ${PROG} |
8 | 8 |
9 ${PROG}: ${OBJS} | 9 ${PROG}: ${OBJS} |
10 ${CC} ${CFLAGS} -o $@ ${OBJS} -lpcsclite | 10 ${CC} ${CFLAGS} -o $@ ${OBJS} -lpcsclite |