comparison libgsmefr/Makefile @ 40:0f1fe48bdb46

libgsmefr/Makefile: add header file dependencies
author Mychaela Falconia <falcon@freecalypso.org>
date Thu, 24 Nov 2022 07:40:08 +0000
parents 38326102fc43
children b9ade9d64e0e
comparison
equal deleted inserted replaced
39:36e1363ad885 40:0f1fe48bdb46
1 CC= gcc 1 CC= gcc
2 CFLAGS= -O2 2 CFLAGS= -O2
3 OBJS= basicop2.o frame2params.o params2frame.o sid_class.o sid_insert.o \ 3 OBJS= basicop2.o frame2params.o params2frame.o sid_class.o sid_insert.o \
4 tls_flags.o 4 tls_flags.o
5 HDRS= basic_op.h cnst.h codec.h d_homing.h dtx.h e_homing.h gains_tb.h \
6 gsm_efr.h namespace.h no_count.h oper_32b.h sig_proc.h typedef.h vad.h
5 LIB= libgsmefr.a 7 LIB= libgsmefr.a
6 8
7 INSTALL_PREFIX= /usr/local 9 INSTALL_PREFIX= /usr/local
8 10
9 all: ${LIB} 11 all: ${LIB}
12
13 ${OBJS}: ${HDRS}
10 14
11 ${LIB}: ${OBJS} 15 ${LIB}: ${OBJS}
12 ar rcu $@ ${OBJS} 16 ar rcu $@ ${OBJS}
13 ranlib $@ 17 ranlib $@
14 18