annotate libtest/Makefile @ 11:a3aa152c4653

libtest: pcmwrite helper function and module
author Mychaela Falconia <falcon@freecalypso.org>
date Sun, 20 Nov 2022 00:31:42 +0000
parents 820d88b97924
children 30d1d0a705c0
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
11
a3aa152c4653 libtest: pcmwrite helper function and module
Mychaela Falconia <falcon@freecalypso.org>
parents: 10
diff changeset
3 OBJS= binreader.o pcmwrite.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