FreeCalypso > hg > fc-pcsc-tools
annotate libutil/Makefile @ 183:2545dd27ca38
fc-simtool write-imsi-sh command implemented
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sat, 06 Mar 2021 05:24:26 +0000 |
parents | 274bfd8bccd0 |
children | 3bde063234aa |
rev | line source |
---|---|
0
f7145c77b7fb
starting libcommon: factored out of fc-simtool
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1 CC= gcc |
157
f064dbcc5f41
libutil split from libcommon
Mychaela Falconia <falcon@freecalypso.org>
parents:
132
diff
changeset
|
2 CFLAGS= -O2 |
f064dbcc5f41
libutil split from libcommon
Mychaela Falconia <falcon@freecalypso.org>
parents:
132
diff
changeset
|
3 OBJS= alpha_decode.o alpha_fromfile.o alpha_valid.o decimal_str.o \ |
f064dbcc5f41
libutil split from libcommon
Mychaela Falconia <falcon@freecalypso.org>
parents:
132
diff
changeset
|
4 filesearch.o gsm7_decode.o gsm7_encode.o gsm7_encode_table.o \ |
162
274bfd8bccd0
libutil: ICCID Luhn function implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
161
diff
changeset
|
5 gsm7_unpack.o hexdigits.o hexread.o hexstr.o iccid_luhn.o nibbles2asc.o\ |
161
884b93362449
libutil: nibbles_to_ascii() function implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
160
diff
changeset
|
6 number_decode.o number_encode.o pinentry.o plmncodes.o revnibbles.o \ |
884b93362449
libutil: nibbles_to_ascii() function implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
160
diff
changeset
|
7 shorthand.o |
157
f064dbcc5f41
libutil split from libcommon
Mychaela Falconia <falcon@freecalypso.org>
parents:
132
diff
changeset
|
8 LIB= libutil.a |
0
f7145c77b7fb
starting libcommon: factored out of fc-simtool
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
9 |
f7145c77b7fb
starting libcommon: factored out of fc-simtool
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
10 all: ${LIB} |
f7145c77b7fb
starting libcommon: factored out of fc-simtool
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
11 |
f7145c77b7fb
starting libcommon: factored out of fc-simtool
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
12 ${LIB}: ${OBJS} |
f7145c77b7fb
starting libcommon: factored out of fc-simtool
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
13 ar rcu $@ ${OBJS} |
f7145c77b7fb
starting libcommon: factored out of fc-simtool
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
14 ranlib $@ |
f7145c77b7fb
starting libcommon: factored out of fc-simtool
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
15 |
f7145c77b7fb
starting libcommon: factored out of fc-simtool
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
16 clean: |
f7145c77b7fb
starting libcommon: factored out of fc-simtool
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
17 rm -f *.[oa] errs |