annotate libutil/Makefile @ 161:884b93362449

libutil: nibbles_to_ascii() function implemented
author Mychaela Falconia <falcon@freecalypso.org>
date Fri, 26 Feb 2021 21:10:26 +0000
parents b86b3f8890ba
children 274bfd8bccd0
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
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 \
161
884b93362449 libutil: nibbles_to_ascii() function implemented
Mychaela Falconia <falcon@freecalypso.org>
parents: 160
diff changeset
5 gsm7_unpack.o hexdigits.o hexread.o hexstr.o nibbles2asc.o \
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