aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/Makefile
diff options
context:
space:
mode:
authorFalk Hüffner <mellum@users.sourceforge.net>2003-09-13 10:07:46 +0000
committerFalk Hüffner <mellum@users.sourceforge.net>2003-09-13 10:07:46 +0000
commitf7728bf61cb8669e7068344a85048488a998c45f (patch)
treeb64b84159460e4eb728eb4f353ffb1645f38d7e7 /libavcodec/Makefile
parenta018d318e70aaa1f02f61c034e6fc517052cb1c0 (diff)
downloadffmpeg-f7728bf61cb8669e7068344a85048488a998c45f.tar.gz
Use asms instead of builtins when compiling for generic Alpha. Less
ugly. Originally committed as revision 2270 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/Makefile')
-rw-r--r--libavcodec/Makefile11
1 files changed, 0 insertions, 11 deletions
diff --git a/libavcodec/Makefile b/libavcodec/Makefile
index fa7d31568b..358ef8d02d 100644
--- a/libavcodec/Makefile
+++ b/libavcodec/Makefile
@@ -171,17 +171,6 @@ libpostproc/libpostproc.a:
%.o: %.S
$(CC) $(CFLAGS) -c -o $@ $<
-# motion_est_alpha uses the MVI extension, which is not available with
-# -mcpu=ev4 (default) or ev5/ev56. Thus, force -mcpu=pca56 in those
-# cases.
-ifeq ($(TARGET_ARCH_ALPHA),yes)
-alpha/motion_est_alpha.o: alpha/motion_est_alpha.c
- cpu=`echo "$(CFLAGS)" | sed -n 's,.*-mcpu=\([a-zA-Z0-9]*\).*,\1,p'`; \
- case x"$$cpu" in x|xev[45]*) newcpu=pca56;; *) newcpu=$$cpu;; esac; \
- echo $(CC) $(CFLAGS) -mcpu=$$newcpu -c -o $@ $<;\
- $(CC) $(CFLAGS) -mcpu=$$newcpu -c -o $@ $<
-endif
-
depend: $(SRCS)
$(CC) -MM $(CFLAGS) $^ 1>.depend