comparison simtool/Makefile @ 85:b57cf64ece29

fc-simtool project started
author Mychaela Falconia <falcon@freecalypso.org>
date Sun, 24 Jan 2021 00:32:10 +0000
parents
children 2a0d1d5b9313
comparison
equal deleted inserted replaced
84:1d7d8615d628 85:b57cf64ece29
1 CC= gcc
2 CFLAGS= -O2 -I/usr/include/PCSC
3 PROG= fc-simtool
4 OBJS= apdu.o atr.o cardconnect.o dispatch.o globals.o main.o select.o
5
6 all: ${PROG}
7
8 ${PROG}: ${OBJS}
9 ${CC} ${CFLAGS} -o $@ ${OBJS} -lpcsclite
10
11 clean:
12 rm -f ${PROG} *.o