FreeCalypso > hg > freecalypso-hwlab
view pcsc-test/Makefile @ 161:d3128f3e1bde
fc-simtool and fc-uicc-tool moved to new fc-pcsc-tools repository
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Fri, 12 Feb 2021 05:39:38 +0000 |
parents | 1d7d8615d628 |
children |
line wrap: on
line source
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