# HG changeset patch # User Mychaela Falconia # Date 1683602002 0 # Node ID a48ddaa0f9a749a6f7325fe40dfafdb65c775e13 # Parent 3aeb33d835ad88744151943a1e1b6cdf67547fcf libgsmfrp/Makefile: add header file dependency diff -r 3aeb33d835ad -r a48ddaa0f9a7 libgsmfrp/Makefile --- 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 $@