FreeCalypso > hg > freecalypso-hwlab
annotate simtool/Makefile @ 125:ddff76088d12
fc-simtool: add EF_DIR symbolic name
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Fri, 29 Jan 2021 03:10:55 +0000 |
parents | 6c4567dd8946 |
children | 141489d31667 |
rev | line source |
---|---|
85
b57cf64ece29
fc-simtool project started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1 CC= gcc |
b57cf64ece29
fc-simtool project started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
2 CFLAGS= -O2 -I/usr/include/PCSC |
b57cf64ece29
fc-simtool project started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
3 PROG= fc-simtool |
108
6f80cfdc7e05
fc-simtool: CHV commands implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
107
diff
changeset
|
4 OBJS= alpha_decode.o alpha_valid.o apdu.o atr.o cardconnect.o chv.o \ |
124
6c4567dd8946
fc-simtool: add non-interactive one-shot command (or script) mode
Mychaela Falconia <falcon@freecalypso.org>
parents:
123
diff
changeset
|
5 dispatch.o exit.o globals.o hexdump.o hexread.o hlread.o main.o names.o\ |
112
87d459d9797a
fc-simtool: pb-erase command implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
111
diff
changeset
|
6 pbcommon.o pbdump.o pberase.o pbupdate.o readcmd.o readops.o \ |
123
b391204d3cd5
fc-simtool: add scripting facility in the form of exec command
Mychaela Falconia <falcon@freecalypso.org>
parents:
114
diff
changeset
|
7 saverestore.o script.o select.o sysmo.o telsum.o writecmd.o writeops.o |
107
ba2c796259e9
simtool/Makefile: add install
Mychaela Falconia <falcon@freecalypso.org>
parents:
104
diff
changeset
|
8 INSTBIN=/opt/freecalypso/bin |
85
b57cf64ece29
fc-simtool project started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
9 |
b57cf64ece29
fc-simtool project started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
10 all: ${PROG} |
b57cf64ece29
fc-simtool project started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
11 |
b57cf64ece29
fc-simtool project started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
12 ${PROG}: ${OBJS} |
b57cf64ece29
fc-simtool project started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
13 ${CC} ${CFLAGS} -o $@ ${OBJS} -lpcsclite |
b57cf64ece29
fc-simtool project started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
14 |
107
ba2c796259e9
simtool/Makefile: add install
Mychaela Falconia <falcon@freecalypso.org>
parents:
104
diff
changeset
|
15 install: |
ba2c796259e9
simtool/Makefile: add install
Mychaela Falconia <falcon@freecalypso.org>
parents:
104
diff
changeset
|
16 mkdir -p ${INSTBIN} |
ba2c796259e9
simtool/Makefile: add install
Mychaela Falconia <falcon@freecalypso.org>
parents:
104
diff
changeset
|
17 install -c ${PROG} ${INSTBIN} |
ba2c796259e9
simtool/Makefile: add install
Mychaela Falconia <falcon@freecalypso.org>
parents:
104
diff
changeset
|
18 |
85
b57cf64ece29
fc-simtool project started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
19 clean: |
b57cf64ece29
fc-simtool project started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
20 rm -f ${PROG} *.o |