FreeCalypso > hg > fc-pcsc-tools
annotate libutil/Makefile @ 160:b86b3f8890ba
libutil: shorthand decimal string parsing implemented
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Fri, 26 Feb 2021 21:04:11 +0000 |
parents | 3698c8192d2d |
children | 884b93362449 |
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 \ |
158
3698c8192d2d
libutil: hex digit functions factored out
Mychaela Falconia <falcon@freecalypso.org>
parents:
157
diff
changeset
|
5 gsm7_unpack.o hexdigits.o hexread.o hexstr.o number_decode.o \ |
160
b86b3f8890ba
libutil: shorthand decimal string parsing implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
158
diff
changeset
|
6 number_encode.o pinentry.o plmncodes.o revnibbles.o shorthand.o |
157
f064dbcc5f41
libutil split from libcommon
Mychaela Falconia <falcon@freecalypso.org>
parents:
132
diff
changeset
|
7 LIB= libutil.a |
0
f7145c77b7fb
starting libcommon: factored out of fc-simtool
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
8 |
f7145c77b7fb
starting libcommon: factored out of fc-simtool
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
9 all: ${LIB} |
f7145c77b7fb
starting libcommon: factored out of fc-simtool
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
10 |
f7145c77b7fb
starting libcommon: factored out of fc-simtool
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
11 ${LIB}: ${OBJS} |
f7145c77b7fb
starting libcommon: factored out of fc-simtool
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
12 ar rcu $@ ${OBJS} |
f7145c77b7fb
starting libcommon: factored out of fc-simtool
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
13 ranlib $@ |
f7145c77b7fb
starting libcommon: factored out of fc-simtool
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
14 |
f7145c77b7fb
starting libcommon: factored out of fc-simtool
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
15 clean: |
f7145c77b7fb
starting libcommon: factored out of fc-simtool
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
16 rm -f *.[oa] errs |