FreeCalypso > hg > freecalypso-hwlab
view pcsc-test/Makefile @ 123:b391204d3cd5
fc-simtool: add scripting facility in the form of exec command
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Thu, 28 Jan 2021 18:42:24 +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