FreeCalypso > hg > gsmhr-codec-ref
changeset 1:dc0dd42ee8f2
original code compiles
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Fri, 14 Jun 2024 23:48:01 +0000 |
parents | 9008dbc8ca74 |
children | aa7cc4333d95 |
files | .hgignore Makefile |
diffstat | 2 files changed, 18 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/.hgignore Fri Jun 14 23:48:01 2024 +0000 @@ -0,0 +1,5 @@ +syntax: regexp + +\.[oa]$ + +^gsm_hr$
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Makefile Fri Jun 14 23:48:01 2024 +0000 @@ -0,0 +1,13 @@ +CC= gcc +CFLAGS= -O2 -fno-builtin +PROG= gsm_hr +OBJS= dtx.o err_conc.o globdefs.o gsm_hr.o homing.o host.o mathdp31.o \ + mathhalf.o sp_dec.o sp_enc.o sp_frm.o sp_rom.o sp_sfrm.o vad.o + +all: ${PROG} + +${PROG}: ${OBJS} + ${CC} -o $@ ${OBJS} + +clean: + rm -f *.o *.out ${PROG} errs