changeset 241:a48ddaa0f9a7

libgsmfrp/Makefile: add header file dependency
author Mychaela Falconia <falcon@freecalypso.org>
date Tue, 09 May 2023 03:13:22 +0000
parents 3aeb33d835ad
children f081a6850fb5
files libgsmfrp/Makefile
diffstat 1 files changed, 3 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/libgsmfrp/Makefile	Mon May 08 07:31:00 2023 +0000
+++ b/libgsmfrp/Makefile	Tue May 09 03:13:22 2023 +0000
@@ -2,12 +2,15 @@
 CFLAGS=	-O2
 OBJS=	bad_frame.o comfort_noise.o good_frame.o prng.o sidclass.o \
 	silence_frame.o state.o
+HDRS=	gsm_fr_preproc.h internal.h
 LIB=	libgsmfrp.a
 
 INSTALL_PREFIX=	/usr/local
 
 all:	${LIB}
 
+${OBJS}:	${HDRS}
+
 ${LIB}:	${OBJS}
 	ar rcu $@ ${OBJS}
 	ranlib $@