FreeCalypso > hg > fc-pcsc-tools
view offline/Makefile @ 181:63b640562e21
simtool/miscadm.c: code refactoring in preparation for
adding shorthand ICCID and IMSI write commands
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sat, 06 Mar 2021 04:51:56 +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