FreeCalypso > hg > freecalypso-hwlab
annotate simtool/Makefile @ 176:fb2f6497ba53 default tip
doc/Linux-DTR-RTS-flaw: point to new location of this article
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Mon, 11 Dec 2023 19:37:20 +0000 |
parents | ed34c8b7e2c9 |
children |
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 |
127
141489d31667
fc-simtool: a38 command implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
124
diff
changeset
|
4 OBJS= a38.o alpha_decode.o alpha_valid.o apdu.o atr.o cardconnect.o chv.o \ |
154
ed34c8b7e2c9
fc-simtool: grcard2-set-pin[12] commands implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
150
diff
changeset
|
5 dispatch.o dumpdir.o exit.o globals.o grcard1.o grcard2.o hexdump.o \ |
ed34c8b7e2c9
fc-simtool: grcard2-set-pin[12] commands implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
150
diff
changeset
|
6 hexread.o hexstr.o hlread.o main.o names.o pbcommon.o pbdump.o \ |
ed34c8b7e2c9
fc-simtool: grcard2-set-pin[12] commands implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
150
diff
changeset
|
7 pberase.o pbupdate.o readcmd.o readops.o saverestore.o script.o \ |
ed34c8b7e2c9
fc-simtool: grcard2-set-pin[12] commands implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
150
diff
changeset
|
8 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
|
9 INSTBIN=/opt/freecalypso/bin |
85
b57cf64ece29
fc-simtool project started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
10 |
b57cf64ece29
fc-simtool project started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
11 all: ${PROG} |
b57cf64ece29
fc-simtool project started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
12 |
b57cf64ece29
fc-simtool project started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
13 ${PROG}: ${OBJS} |
b57cf64ece29
fc-simtool project started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
14 ${CC} ${CFLAGS} -o $@ ${OBJS} -lpcsclite |
b57cf64ece29
fc-simtool project started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
15 |
107
ba2c796259e9
simtool/Makefile: add install
Mychaela Falconia <falcon@freecalypso.org>
parents:
104
diff
changeset
|
16 install: |
ba2c796259e9
simtool/Makefile: add install
Mychaela Falconia <falcon@freecalypso.org>
parents:
104
diff
changeset
|
17 mkdir -p ${INSTBIN} |
ba2c796259e9
simtool/Makefile: add install
Mychaela Falconia <falcon@freecalypso.org>
parents:
104
diff
changeset
|
18 install -c ${PROG} ${INSTBIN} |
ba2c796259e9
simtool/Makefile: add install
Mychaela Falconia <falcon@freecalypso.org>
parents:
104
diff
changeset
|
19 |
85
b57cf64ece29
fc-simtool project started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
20 clean: |
b57cf64ece29
fc-simtool project started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
21 rm -f ${PROG} *.o |