view pcsc-test/Makefile @ 87:2a0d1d5b9313

fc-simtool: symbolic file names implemented
author Mychaela Falconia <falcon@freecalypso.org>
date Sun, 24 Jan 2021 03:43:01 +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