OSDN Git Service

Remove comments that are neither very enlightening nor particularly up-to-date.
[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 codectest mpeg4 mpeg ac3 snow snowll: vsynth1/00.pgm vsynth2/00.pgm asynth1.sw tiny_psnr$(EXESUF)
31         $(SRC_DIR)/regression.sh $@ $(REFFILE1) vsynth1
32         $(SRC_DIR)/regression.sh $@ $(REFFILE2) vsynth2
33
34 ifeq ($(CONFIG_GPL),yes)
35 libavtest: vsynth1/00.pgm asynth1.sw
36         $(SRC_DIR)/regression.sh $@ $(LIBAV_REFFILE) vsynth1
37 else
38 libavtest:
39         @echo
40         @echo "This test requires FFmpeg to be compiled with --enable-gpl."
41         @echo
42 endif
43
44 ifeq ($(CONFIG_SWSCALER),yes)
45 test-server codectest mpeg4 mpeg ac3 snow snowll libavtest: swscale_error
46 swscale_error:
47         @echo
48         @echo "This regression test is incompatible with --enable-swscaler."
49         @echo
50         @exit 1
51 endif
52
53 seektest: seek_test$(EXESUF)
54         $(SRC_DIR)/seek_test.sh $(SEEK_REFFILE)
55
56 vsynth1/00.pgm: videogen$(EXESUF)
57         mkdir -p vsynth1
58         $(BUILD_DIR)/$< 'vsynth1/'
59
60 vsynth2/00.pgm: rotozoom$(EXESUF)
61         mkdir -p vsynth2
62         $(BUILD_DIR)/$< 'vsynth2/' $(SRC_DIR)/lena.pnm
63
64 asynth1.sw: audiogen$(EXESUF)
65         $(BUILD_DIR)/$< $@
66
67 %$(EXESUF): %.c
68         $(CC) $(LDFLAGS) $(CFLAGS) -o $@ $<
69
70 seek_test$(EXESUF): seek_test.c
71         $(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)
72
73 distclean clean:
74         rm -rf vsynth1 vsynth2 data asynth1.sw *~
75         rm -f $(addsuffix $(EXESUF),audiogen videogen rotozoom seek_test tiny_psnr)
76
77 .PHONY: all fulltest test codectest libavtest test-server seektest
78 .PHONY: mpeg4 mpeg ac3 snow snowll distclean clean