annotate libtest/Makefile @ 29:d21c68b8f16c

gsmfr-hand-test: yet another debug aid
author Mychaela Falconia <falcon@freecalypso.org>
date Mon, 21 Nov 2022 03:09:39 +0000
parents 30d1d0a705c0
children be57e06bed84
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
8
d5b888e6a05b libtest: add Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
1 CC= gcc
d5b888e6a05b libtest: add Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
2 CFLAGS= -O2
13
30d1d0a705c0 libtest: add WAV reader helper functions
Mychaela Falconia <falcon@freecalypso.org>
parents: 11
diff changeset
3 OBJS= binreader.o pcmwrite.o wavrdhelp.o wavreader.o wavwriter.o
8
d5b888e6a05b libtest: add Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
4 LIB= libtest.a
d5b888e6a05b libtest: add Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
5
d5b888e6a05b libtest: add Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
6 all: ${LIB}
d5b888e6a05b libtest: add Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
7
d5b888e6a05b libtest: add Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
8 ${LIB}: ${OBJS}
d5b888e6a05b libtest: add Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
9 ar rcu $@ ${OBJS}
d5b888e6a05b libtest: add Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
10 ranlib $@
d5b888e6a05b libtest: add Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
11
d5b888e6a05b libtest: add Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
12 clean:
d5b888e6a05b libtest: add Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
13 rm -f *.[oa] errs