Commit 0e16a1fc authored by Diego Biurrun's avatar Diego Biurrun

Simplify dsptest* rule and add libavutil to the dsptest* includes.

Originally committed as revision 6011 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent c895987b
...@@ -67,14 +67,14 @@ DSPDEPS = $(SRC_PATH)/libavcodec/i386/dsputil_mmx.c \ ...@@ -67,14 +67,14 @@ DSPDEPS = $(SRC_PATH)/libavcodec/i386/dsputil_mmx.c \
$(SRC_PATH)/libavcodec/dsputil.h \ $(SRC_PATH)/libavcodec/dsputil.h \
$(SRC_PATH)/libavcodec/simple_idct.c $(SRC_PATH)/libavcodec/simple_idct.c
DSPCFLAGS = -O4 -fomit-frame-pointer -DHAVE_AV_CONFIG_H -I.. \
-I$(SRC_PATH)/libavutil/ -I$(SRC_PATH)/libavcodec/i386 \
-I$(SRC_PATH)/libavcodec/ -lm
dsptestpic: dsptest.c $(DSPDEPS) dsptestpic: dsptest.c $(DSPDEPS)
$(CC) -fPIC -DPIC -O4 -fomit-frame-pointer -DHAVE_AV_CONFIG_H -I.. \ $(CC) -fPIC -DPIC $(DSPCFLAGS) -o $@ $<
-I$(SRC_PATH)/libavcodec/i386 -I$(SRC_PATH)/libavcodec/ \
-o $@ $< -lm
dsptest: dsptest.c $(DSPDEPS) dsptest: dsptest.c $(DSPDEPS)
$(CC) -O4 -fomit-frame-pointer -DHAVE_AV_CONFIG_H -I.. \ $(CC) $(DSPCFLAGS) -o $@ $<
-I$(SRC_PATH)/libavcodec/i386 -I$(SRC_PATH)/libavcodec/ \
-o $@ $< -lm
distclean clean: distclean clean:
rm -rf vsynth1 vsynth2 data rm -rf vsynth1 vsynth2 data
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment