FreeCalypso > hg > freecalypso-hwlab
comparison uicc/Makefile @ 133:f3bdefbeae38
fc-uicc-tool: readbin and readrec commands implemented
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Thu, 04 Feb 2021 01:45:16 +0000 |
parents | f691a19f191d |
children | 69628bcfec17 |
comparison
equal
deleted
inserted
replaced
132:5af88fa11b54 | 133:f3bdefbeae38 |
---|---|
1 CC= gcc | 1 CC= gcc |
2 CFLAGS= -O2 -I/usr/include/PCSC | 2 CFLAGS= -O2 -I/usr/include/PCSC |
3 PROG= fc-uicc-tool | 3 PROG= fc-uicc-tool |
4 OBJS= apdu.o atr.o cardconnect.o dispatch.o exit.o globals.o hexdump.o main.o\ | 4 OBJS= apdu.o atr.o cardconnect.o dispatch.o exit.o globals.o hexdump.o main.o\ |
5 names.o script.o select.o | 5 names.o readcmd.o readops.o script.o select.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 |