annotate libgsmfr2/Makefile @ 488:6724fbb01a09 default tip

PACKAGING: grammar fix
author Mychaela Falconia <falcon@freecalypso.org>
date Mon, 20 May 2024 22:02:36 +0000
parents cb1d1ea7f2c5
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
278
c94d9a336e8f libgsmfr2: implement DHF const datum
Mychaela Falconia <falcon@freecalypso.org>
parents: 275
diff changeset
1 OBJS= add.o comfort_noise.o dec_main.o dec_wrap.o dhf.o ed_state.o \
279
4db5fc10fd1a libgsmfr2: implement full decoder
Mychaela Falconia <falcon@freecalypso.org>
parents: 278
diff changeset
2 enc_homing.o enc_main.o enc_wrap.o full_dec.o long_term.o lpc.o \
4db5fc10fd1a libgsmfr2: implement full decoder
Mychaela Falconia <falcon@freecalypso.org>
parents: 278
diff changeset
3 pack_frame.o pack_frame2.o pp_bad.o pp_good.o pp_state.o preprocess.o \
4db5fc10fd1a libgsmfr2: implement full decoder
Mychaela Falconia <falcon@freecalypso.org>
parents: 278
diff changeset
4 prng.o rpe.o short_term.o sidclass.o silence_frame.o table.o \
4db5fc10fd1a libgsmfr2: implement full decoder
Mychaela Falconia <falcon@freecalypso.org>
parents: 278
diff changeset
5 unpack_frame.o unpack_frame2.o xmaxc_mean.o
264
8b21a6b7a3bf libgsmfr2: beginning to integrate TU-Berlin code guts
Mychaela Falconia <falcon@freecalypso.org>
parents: 263
diff changeset
6 HDRS= ed_internal.h ed_state.h pp_internal.h pp_state.h tw_gsmfr.h typedef.h
256
a33edf624061 libgsmfr2: start with API definition and port of libgsmfrp code
Mychaela Falconia <falcon@freecalypso.org>
parents: 248
diff changeset
7 LIB= libgsmfr2.a
2
2b5770c715ee libgsmfrp: compiling utility functions
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
8
453
19f1aa01ea10 new approach to config & build for ThemWi software
Mychaela Falconia <falcon@freecalypso.org>
parents: 279
diff changeset
9 include ../config.defs
20
93ed41fb4038 libgsmfrp/Makefile: add install
Mychaela Falconia <falcon@freecalypso.org>
parents: 6
diff changeset
10
2
2b5770c715ee libgsmfrp: compiling utility functions
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
11 all: ${LIB}
2b5770c715ee libgsmfrp: compiling utility functions
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
12
241
a48ddaa0f9a7 libgsmfrp/Makefile: add header file dependency
Mychaela Falconia <falcon@freecalypso.org>
parents: 108
diff changeset
13 ${OBJS}: ${HDRS}
a48ddaa0f9a7 libgsmfrp/Makefile: add header file dependency
Mychaela Falconia <falcon@freecalypso.org>
parents: 108
diff changeset
14
2
2b5770c715ee libgsmfrp: compiling utility functions
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
15 ${LIB}: ${OBJS}
2b5770c715ee libgsmfrp: compiling utility functions
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
16 ar rcu $@ ${OBJS}
2b5770c715ee libgsmfrp: compiling utility functions
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
17 ranlib $@
2b5770c715ee libgsmfrp: compiling utility functions
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
18
20
93ed41fb4038 libgsmfrp/Makefile: add install
Mychaela Falconia <falcon@freecalypso.org>
parents: 6
diff changeset
19 install:
460
cb1d1ea7f2c5 new build system: accept more directory options
Mychaela Falconia <falcon@freecalypso.org>
parents: 453
diff changeset
20 mkdir -p ${DESTDIR}${includedir}
cb1d1ea7f2c5 new build system: accept more directory options
Mychaela Falconia <falcon@freecalypso.org>
parents: 453
diff changeset
21 install -c -m 444 tw_gsmfr.h ${DESTDIR}${includedir}
cb1d1ea7f2c5 new build system: accept more directory options
Mychaela Falconia <falcon@freecalypso.org>
parents: 453
diff changeset
22 mkdir -p ${DESTDIR}${libdir}
cb1d1ea7f2c5 new build system: accept more directory options
Mychaela Falconia <falcon@freecalypso.org>
parents: 453
diff changeset
23 install -c -m 444 ${LIB} ${DESTDIR}${libdir}
20
93ed41fb4038 libgsmfrp/Makefile: add install
Mychaela Falconia <falcon@freecalypso.org>
parents: 6
diff changeset
24
2
2b5770c715ee libgsmfrp: compiling utility functions
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
25 clean:
2b5770c715ee libgsmfrp: compiling utility functions
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
26 rm -f *.[oa] errs