annotate offline/Makefile @ 182:f4edccd4b583

fc-simtool: write-iccid-sh{18,19} commands implemented
author Mychaela Falconia <falcon@freecalypso.org>
date Sat, 06 Mar 2021 05:07:46 +0000
parents 4cd2023f56a6
children 0f96b5136541
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1
2071b28cd0c7 simtool: first refactored version
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
1 CC= gcc
163
4cd2023f56a6 sim-iccid-mkfull utility created, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents: 157
diff changeset
2 CFLAGS= -O2
4cd2023f56a6 sim-iccid-mkfull utility created, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents: 157
diff changeset
3 PROGS= sim-iccid-mkfull
4cd2023f56a6 sim-iccid-mkfull utility created, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents: 157
diff changeset
4 LIBS= ../libutil/libutil.a
1
2071b28cd0c7 simtool: first refactored version
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
5 INSTBIN=/opt/freecalypso/bin
2071b28cd0c7 simtool: first refactored version
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
6
26
4bd6275d7c79 fc-pcsc-atr trivial program added
Mychaela Falconia <falcon@freecalypso.org>
parents: 16
diff changeset
7 all: ${PROGS}
1
2071b28cd0c7 simtool: first refactored version
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
8
163
4cd2023f56a6 sim-iccid-mkfull utility created, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents: 157
diff changeset
9 sim-iccid-mkfull: sim-iccid-mkfull.o ${LIBS}
4cd2023f56a6 sim-iccid-mkfull utility created, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents: 157
diff changeset
10 ${CC} ${CFLAGS} -o $@ $@.o ${LIBS}
31
be9984600bf8 fc-pcsc-list utility written
Mychaela Falconia <falcon@freecalypso.org>
parents: 26
diff changeset
11
1
2071b28cd0c7 simtool: first refactored version
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
12 install:
2071b28cd0c7 simtool: first refactored version
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
13 mkdir -p ${INSTBIN}
26
4bd6275d7c79 fc-pcsc-atr trivial program added
Mychaela Falconia <falcon@freecalypso.org>
parents: 16
diff changeset
14 install -c ${PROGS} ${INSTBIN}
1
2071b28cd0c7 simtool: first refactored version
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
15
2071b28cd0c7 simtool: first refactored version
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
16 clean:
26
4bd6275d7c79 fc-pcsc-atr trivial program added
Mychaela Falconia <falcon@freecalypso.org>
parents: 16
diff changeset
17 rm -f ${PROGS} *.o