diff options
author | Zdenek Kabelac <kabi@informatics.muni.cz> | 2002-05-23 13:34:22 +0000 |
---|---|---|
committer | Zdenek Kabelac <kabi@informatics.muni.cz> | 2002-05-23 13:34:22 +0000 |
commit | ec9a41f57d3df89859a5eb9addd3f0de167909ba (patch) | |
tree | 6ab19c1f8ad638821d264a279742df7039e572c1 /tests/Makefile | |
parent | 6efad6fd85b2326142939b57f8720341031f656c (diff) | |
download | ffmpeg-streaming-ec9a41f57d3df89859a5eb9addd3f0de167909ba.zip ffmpeg-streaming-ec9a41f57d3df89859a5eb9addd3f0de167909ba.tar.gz |
* somewhat more advanced test suit for dsp code - for now i386 only
cd test ; make dsptest ; ./dsptest
Originally committed as revision 568 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'tests/Makefile')
-rw-r--r-- | tests/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/Makefile b/tests/Makefile index e661a46..cb3b387 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -36,6 +36,12 @@ asynth1.sw: audiogen audiogen: audiogen.c $(CC) $(LDFLAGS) $(CFLAGS) -o $@ $< +DSPDEPS = $(SRC_PATH)/libavcodec/i386/dsputil_mmx.c \ + $(SRC_PATH)/libavcodec/i386/dsputil_mmx_avg.h + +dsptest: dsptest.c $(DSPDEPS) + $(CC) -O4 -fomit-frame-pointer -DHAVE_AV_CONFIG_H -I.. -I$(SRC_PATH)/libavcodec/i386 -I$(SRC_PATH)/libavcodec/ -o $@ $< + clean: rm -rf vsynth1 rm -f asynth1.sw *~ audiogen videogen |