annotate librftab/Makefile @ 926:6a0aa8d36d06

rvinterf backslash escape: introduce libprint The new helper function library named libprint is meant to replace the badly misnamed libg23, and will soon contain functions for printing all of the same kinds of GPF TST packets that are now handled in libg23. However, we are also moving safe_print_trace() from libasync to this new library, and changing it to emit our new backslash escape format.
author Mychaela Falconia <falcon@freecalypso.org>
date Tue, 23 May 2023 03:47:46 +0000
parents b73c21a2148f
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
281
feb2ee302d25 librftab compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
1 CC= gcc
feb2ee302d25 librftab compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
2 CFLAGS= -O2
720
b73c21a2148f reorg: smallconv.c moved from ffstools/cal2text to librftab
Mychaela Falconia <falcon@freecalypso.org>
parents: 315
diff changeset
3 OBJS= readfir.o readtxramp.o rftablerd.o rftablewr.o smallconv.o
281
feb2ee302d25 librftab compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
4 LIB= librftab.a
feb2ee302d25 librftab compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
5
feb2ee302d25 librftab compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
6 all: ${LIB}
feb2ee302d25 librftab compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
7
feb2ee302d25 librftab compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
8 ${LIB}: ${OBJS}
feb2ee302d25 librftab compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
9 ar rcu $@ ${OBJS}
feb2ee302d25 librftab compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
10 ranlib $@
feb2ee302d25 librftab compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
11
feb2ee302d25 librftab compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
12 clean:
feb2ee302d25 librftab compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
13 rm -f *.[oa] errs