FreeCalypso > hg > freecalypso-hwlab
comparison uicc/Makefile @ 130:f691a19f191d
fc-uicc-tool skeleton started
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Thu, 04 Feb 2021 00:08:12 +0000 |
parents | |
children | f3bdefbeae38 |
comparison
equal
deleted
inserted
replaced
129:2adb802b2a98 | 130:f691a19f191d |
---|---|
1 CC= gcc | |
2 CFLAGS= -O2 -I/usr/include/PCSC | |
3 PROG= fc-uicc-tool | |
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 | |
6 | |
7 all: ${PROG} | |
8 | |
9 ${PROG}: ${OBJS} | |
10 ${CC} ${CFLAGS} -o $@ ${OBJS} -lpcsclite | |
11 | |
12 clean: | |
13 rm -f ${PROG} *.o |