FreeCalypso > hg > freecalypso-hwlab
comparison pcsc-test/Makefile @ 84:1d7d8615d628
pcsc-test: some experiments to get pcsc-lite working
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sat, 23 Jan 2021 17:21:08 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
83:d7a1e7a6d6ba | 84:1d7d8615d628 |
---|---|
1 CC= gcc | |
2 CFLAGS= -O2 -I/usr/include/PCSC | |
3 PROGS= pcsc-test1 pcsc-test2 | |
4 | |
5 all: ${PROGS} | |
6 | |
7 pcsc-test1: pcsc-test1.c | |
8 ${CC} ${CFLAGS} -o $@ $@.c -lpcsclite | |
9 | |
10 pcsc-test2: pcsc-test2.c | |
11 ${CC} ${CFLAGS} -o $@ $@.c -lpcsclite | |
12 | |
13 clean: | |
14 rm -f ${PROGS} *.o |