view Makefile @ 99:97ba63d9361a

scripts/fcsim1-sst: turn off STK & OTA services In the initial unprogrammed state of the cards from Grcard, SST has services 25 through 29 set to allocated and activated. However, these cards appear to not actually support OTA, ENVELOPE commands do nothing (just return SW 9000), and they were never observed issuing any proactive SIM commands, even after a feature-generous TERMINAL PROFILE. Therefore, let's list these STK & OTA services as allocated, but not activated in our FCSIM1 SST.
author Mychaela Falconia <falcon@freecalypso.org>
date Wed, 05 May 2021 04:26:07 +0000
parents 0bc89d61fc59
children
line wrap: on
line source

CC=	gcc
CFLAGS=	-O2
CFLAGS_PCSC=	-O2 -I/usr/include/PCSC

PROGDIR=calypso serial simtool uicc utils
PCSC=	pcsc
LIBDIR=	libcommon libutil
SUBDIR=	${PROGDIR} ${PCSC} ${LIBDIR}

INSTALL_PREFIX=	/opt/freecalypso

all:	${SUBDIR}

simtool:	libcommon libutil
uicc:		libcommon libutil
utils:		libutil

${PROGDIR} ${LIBDIR}: FRC
	cd $@; ${MAKE} ${MFLAGS} CC=${CC} CFLAGS="${CFLAGS}"

pcsc: FRC
	cd $@; ${MAKE} ${MFLAGS} CC=${CC} CFLAGS="${CFLAGS_PCSC}"

clean: FRC
	rm -f a.out core errs
	for i in ${SUBDIR}; do (cd $$i; ${MAKE} ${MFLAGS} clean); done

install: FRC
	mkdir -p ${INSTALL_PREFIX}
	for i in ${PROGDIR} ${PCSC}; do (cd $$i; ${MAKE} ${MFLAGS} \
		INSTALL_PREFIX=${INSTALL_PREFIX} install); done
	mkdir -p ${INSTALL_PREFIX}/sim-data
	mkdir -p ${INSTALL_PREFIX}/sim-scripts
	install -c -m 644 scripts/* ${INSTALL_PREFIX}/sim-scripts

FRC: