FreeCalypso > hg > freecalypso-hwlab
diff 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 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pcsc-test/Makefile Sat Jan 23 17:21:08 2021 +0000 @@ -0,0 +1,14 @@ +CC= gcc +CFLAGS= -O2 -I/usr/include/PCSC +PROGS= pcsc-test1 pcsc-test2 + +all: ${PROGS} + +pcsc-test1: pcsc-test1.c + ${CC} ${CFLAGS} -o $@ $@.c -lpcsclite + +pcsc-test2: pcsc-test2.c + ${CC} ${CFLAGS} -o $@ $@.c -lpcsclite + +clean: + rm -f ${PROGS} *.o