# HG changeset patch # User Mychaela Falconia # Date 1669275608 0 # Node ID 0f1fe48bdb46bc25be125ff84ab1ac9e483e0141 # Parent 36e1363ad88573777f985970fb5fd53399860eaf libgsmefr/Makefile: add header file dependencies diff -r 36e1363ad885 -r 0f1fe48bdb46 libgsmefr/Makefile --- a/libgsmefr/Makefile Thu Nov 24 07:38:23 2022 +0000 +++ b/libgsmefr/Makefile Thu Nov 24 07:40:08 2022 +0000 @@ -2,12 +2,16 @@ CFLAGS= -O2 OBJS= basicop2.o frame2params.o params2frame.o sid_class.o sid_insert.o \ tls_flags.o +HDRS= basic_op.h cnst.h codec.h d_homing.h dtx.h e_homing.h gains_tb.h \ + gsm_efr.h namespace.h no_count.h oper_32b.h sig_proc.h typedef.h vad.h LIB= libgsmefr.a INSTALL_PREFIX= /usr/local all: ${LIB} +${OBJS}: ${HDRS} + ${LIB}: ${OBJS} ar rcu $@ ${OBJS} ranlib $@