FreeCalypso > hg > fc-pcsc-tools
view offline/Makefile @ 225:208ae1633f6c
simtool code: sysmo.c renamed to sjs1_hacks.c,
comments changed to clarify that these special commands
apply only to the recently discontinued SJS1 cards
and not to the SJA2 successor.
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Wed, 10 Mar 2021 19:39:33 +0000 |
parents | 4cd2023f56a6 |
children | 0f96b5136541 |
line wrap: on
line source
CC= gcc CFLAGS= -O2 PROGS= sim-iccid-mkfull LIBS= ../libutil/libutil.a INSTBIN=/opt/freecalypso/bin all: ${PROGS} sim-iccid-mkfull: sim-iccid-mkfull.o ${LIBS} ${CC} ${CFLAGS} -o $@ $@.o ${LIBS} install: mkdir -p ${INSTBIN} install -c ${PROGS} ${INSTBIN} clean: rm -f ${PROGS} *.o