FreeCalypso > hg > gsm-codec-lib
view libgsmfrp/Makefile @ 80:92479d9a8e38
libgsmefr: oper_32b.c compiles
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sat, 26 Nov 2022 07:01:58 +0000 |
parents | 3db7af1249cb |
children | 3b64f255689a |
line wrap: on
line source
CC= gcc CFLAGS= -O2 OBJS= bad_frame.o comfort_noise.o good_frame.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