view libtest/Makefile @ 10:820d88b97924

libtest: implement binary file reader
author Mychaela Falconia <falcon@freecalypso.org>
date Sat, 19 Nov 2022 23:57:42 +0000
parents d5b888e6a05b
children a3aa152c4653
line wrap: on
line source

CC=	gcc
CFLAGS=	-O2
OBJS=	binreader.o wavreader.o wavwriter.o
LIB=	libtest.a

all:	${LIB}

${LIB}:	${OBJS}
	ar rcu $@ ${OBJS}
	ranlib $@

clean:
	rm -f *.[oa] errs