Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Makefile « dump_modes « celt - gitlab.xiph.org/xiph/opus.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3993f5336cba0cb0608a153416b9d19675f29c2c (plain)
1
2
3
4
5
6
7
8
9
10
CFLAGS=-O2 -Wall -Wextra -DHAVE_CONFIG_H
INCLUDES=-I../ -I../../

all: dump_modes

dump_modes:
	$(CC) $(CFLAGS) $(INCLUDES) -DCUSTOM_MODES dump_modes.c ../modes.c ../cwrs.c ../rate.c ../entenc.c ../entdec.c ../mathops.c ../mdct.c ../kiss_fft.c -o dump_modes -lm 

clean:
	rm -f dump_modes