FreeCalypso > hg > gsm-codec-lib
view libgsmfrp/Makefile @ 165:ef3ea52a190f
rename gsmfr-cvt-dlcap to gsmfr-dlcap-gsmx
for consistency with EFR version
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Fri, 16 Dec 2022 04:09:03 +0000 (2022-12-16) |
parents | 3b64f255689a |
children | a48ddaa0f9a7 |
line wrap: on
line source
CC= gcc CFLAGS= -O2 OBJS= bad_frame.o comfort_noise.o good_frame.o prng.o sidclass.o \ silence_frame.o state.o LIB= libgsmfrp.a INSTALL_PREFIX= /usr/local all: ${LIB} ${LIB}: ${OBJS} ar rcu $@ ${OBJS} ranlib $@ install: mkdir -p ${INSTALL_PREFIX}/include install -c -m 444 gsm_fr_preproc.h ${INSTALL_PREFIX}/include mkdir -p ${INSTALL_PREFIX}/lib install -c -m 444 ${LIB} ${INSTALL_PREFIX}/lib clean: rm -f *.[oa] errs