OSDN Git Service

Do not hide the commands make runs.
[coroid/ffmpeg_saccubus.git] / tests / Makefile
1 #
2 # Makefile for tests
3 # (c) 2002 Fabrice Bellard
4 #
5 include ../config.mak
6
7 VPATH=$(SRC_PATH_BARE)/tests
8 SRC_DIR=$(SRC_PATH)/tests
9 BUILD_DIR=$(BUILD_ROOT)/tests
10 CFLAGS=-O2 -Wall -g
11
12 REFFILE1=$(SRC_DIR)/ffmpeg.regression.ref
13 REFFILE2=$(SRC_DIR)/rotozoom.regression.ref
14
15 SERVER_REFFILE=$(SRC_DIR)/ffserver.regression.ref
16
17 LIBAV_REFFILE=$(SRC_DIR)/libav.regression.ref
18
19 SEEK_REFFILE=$(SRC_DIR)/seek.regression.ref
20
21 all fulltest test: codectest libavtest seektest
22
23 test-server: vsynth1/00.pgm asynth1.sw
24         @echo
25         @echo "Unfortunately ffserver is broken and therefore its regression"
26         @echo "test fails randomly. Treat the results accordingly."
27         @echo
28         $(SRC_DIR)/server-regression.sh $(SERVER_REFFILE) $(SRC_DIR)/test.conf
29
30 # fast regression tests for all codecs
31 codectest mpeg4 mpeg ac3 snow snowll: vsynth1/00.pgm vsynth2/00.pgm asynth1.sw tiny_psnr$(EXESUF)
32         $(SRC_DIR)/regression.sh $@ $(REFFILE1) vsynth1
33         $(SRC_DIR)/regression.sh $@ $(REFFILE2) vsynth2
34
35 # fast regression for libav formats
36 ifeq ($(CONFIG_GPL),yes)
37 libavtest: vsynth1/00.pgm asynth1.sw
38         $(SRC_DIR)/regression.sh $@ $(LIBAV_REFFILE) vsynth1
39 else
40 libavtest:
41         @echo
42         @echo "This test requires FFmpeg to be compiled with --enable-gpl."
43         @echo
44 endif
45
46 ifeq ($(CONFIG_SWSCALER),yes)
47 test-server codectest mpeg4 mpeg ac3 snow snowll libavtest: swscale_error
48 swscale_error:
49         @echo
50         @echo "This regression test is incompatible with --enable-swscaler."
51         @echo
52         @exit 1
53 endif
54
55 seektest: seek_test$(EXESUF)
56         $(SRC_DIR)/seek_test.sh $(SEEK_REFFILE)
57
58 # video generation
59
60 vsynth1/00.pgm: videogen$(EXESUF)
61         mkdir -p vsynth1
62         $(BUILD_DIR)/$< 'vsynth1/'
63
64 vsynth2/00.pgm: rotozoom$(EXESUF)
65         mkdir -p vsynth2
66         $(BUILD_DIR)/$< 'vsynth2/' $(SRC_DIR)/lena.pnm
67
68 # audio generation
69
70 asynth1.sw: audiogen$(EXESUF)
71         $(BUILD_DIR)/$< $@
72
73 %$(EXESUF): %.c
74         $(CC) $(LDFLAGS) $(CFLAGS) -o $@ $<
75
76 seek_test$(EXESUF): seek_test.c
77         $(CC) $(LDFLAGS) $(CFLAGS) -DHAVE_AV_CONFIG_H -I.. -I$(SRC_PATH)/libavformat -I$(SRC_PATH)/libavcodec -I$(SRC_PATH)/libavutil -o $@ $< $(BUILD_ROOT)/libavformat/libavformat.a $(BUILD_ROOT)/libavcodec/libavcodec.a $(BUILD_ROOT)/libavutil/libavutil.a $(EXTRALIBS)
78
79 distclean clean:
80         rm -rf vsynth1 vsynth2 data asynth1.sw *~
81         rm -f $(addsuffix $(EXESUF),audiogen videogen rotozoom seek_test tiny_psnr)
82
83 .PHONY: all fulltest test codectest libavtest test-server seektest
84 .PHONY: mpeg4 mpeg ac3 snow snowll distclean clean