mirror of https://github.com/FFmpeg/FFmpeg.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
812 B
41 lines
812 B
# |
|
# Makefile for tests |
|
# (c) 2002 Gerard Lantau |
|
# |
|
include ../config.mak |
|
|
|
VPATH=$(SRC_PATH)/tests |
|
CFLAGS=-O2 -Wall -g |
|
REFFILE=$(SRC_PATH)/tests/ffmpeg.regression.ref |
|
LIBAV_REFFILE=$(SRC_PATH)/tests/libav.regression.ref |
|
|
|
all: test |
|
|
|
# fast regression tests for all codecs |
|
test mpeg4 mpeg: vsynth1/0.pgm asynth1.sw |
|
@$(SRC_PATH)/tests/regression.sh $@ $(REFFILE) |
|
|
|
# fast regression for libav formats |
|
libavtest: vsynth1/0.pgm asynth1.sw |
|
@$(SRC_PATH)/tests/regression.sh $@ $(LIBAV_REFFILE) |
|
|
|
# video generation |
|
|
|
vsynth1/0.pgm: videogen |
|
@mkdir -p vsynth1 |
|
./videogen 'vsynth1/' |
|
|
|
videogen: videogen.c |
|
$(CC) $(LDFLAGS) $(CFLAGS) -o $@ $< |
|
|
|
# audio generation |
|
|
|
asynth1.sw: audiogen |
|
./audiogen $@ |
|
|
|
audiogen: audiogen.c |
|
$(CC) $(LDFLAGS) $(CFLAGS) -o $@ $< |
|
|
|
clean: |
|
rm -rf vsynth1 |
|
rm -f asynth1.sw *~ audiogen videogen
|
|
|