FreeCalypso > hg > freecalypso-hwlab
view pcsc-test/Makefile @ 171:88b8257d353b
eeproms: rm all configs that went to fc-usbser-tools
These configs need to be actively maintained, hence having more than one
official home location for them is a bad idea.
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Mon, 11 Sep 2023 05:21:56 +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