FreeCalypso > hg > freecalypso-hwlab
view simtool/Makefile @ 153:a63e4c64f1f0
fc-simtool: grcard1-set-ki command implemented
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sun, 07 Feb 2021 00:46:18 +0000 |
parents | 54e33e9238b6 |
children | ed34c8b7e2c9 |
line wrap: on
line source
CC= gcc CFLAGS= -O2 -I/usr/include/PCSC PROG= fc-simtool OBJS= a38.o alpha_decode.o alpha_valid.o apdu.o atr.o cardconnect.o chv.o \ dispatch.o dumpdir.o exit.o globals.o grcard1.o hexdump.o hexread.o \ hexstr.o hlread.o main.o names.o pbcommon.o pbdump.o pberase.o \ pbupdate.o readcmd.o readops.o saverestore.o script.o select.o sysmo.o \ telsum.o writecmd.o writeops.o INSTBIN=/opt/freecalypso/bin all: ${PROG} ${PROG}: ${OBJS} ${CC} ${CFLAGS} -o $@ ${OBJS} -lpcsclite install: mkdir -p ${INSTBIN} install -c ${PROG} ${INSTBIN} clean: rm -f ${PROG} *.o