comparison libgsmfrp/Makefile @ 241:a48ddaa0f9a7

libgsmfrp/Makefile: add header file dependency
author Mychaela Falconia <falcon@freecalypso.org>
date Tue, 09 May 2023 03:13:22 +0000
parents 3b64f255689a
children 6ac547f0b903
comparison
equal deleted inserted replaced
240:3aeb33d835ad 241:a48ddaa0f9a7
1 CC= gcc 1 CC= gcc
2 CFLAGS= -O2 2 CFLAGS= -O2
3 OBJS= bad_frame.o comfort_noise.o good_frame.o prng.o sidclass.o \ 3 OBJS= bad_frame.o comfort_noise.o good_frame.o prng.o sidclass.o \
4 silence_frame.o state.o 4 silence_frame.o state.o
5 HDRS= gsm_fr_preproc.h internal.h
5 LIB= libgsmfrp.a 6 LIB= libgsmfrp.a
6 7
7 INSTALL_PREFIX= /usr/local 8 INSTALL_PREFIX= /usr/local
8 9
9 all: ${LIB} 10 all: ${LIB}
11
12 ${OBJS}: ${HDRS}
10 13
11 ${LIB}: ${OBJS} 14 ${LIB}: ${OBJS}
12 ar rcu $@ ${OBJS} 15 ar rcu $@ ${OBJS}
13 ranlib $@ 16 ranlib $@
14 17