diff options
author | Fabrice Bellard <fabrice@bellard.org> | 2003-01-22 09:35:03 +0000 |
---|---|---|
committer | Fabrice Bellard <fabrice@bellard.org> | 2003-01-22 09:35:03 +0000 |
commit | a968e365c9052bc99a3e8ae462321af46f799649 (patch) | |
tree | 00b946c82a39d68e85ed50df753667af09f43908 /libavcodec/Makefile | |
parent | b7a22d846b581bfd9eebf8710eeefa1948495db9 (diff) | |
download | ffmpeg-a968e365c9052bc99a3e8ae462321af46f799649.tar.gz |
fixed dependancy generation (I want the case where SRC_PATH is not . to work too - very useful if you have different gcc versions to test at the same time...) - fixed -msse stuff
Originally committed as revision 1488 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/Makefile')
-rw-r--r-- | libavcodec/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libavcodec/Makefile b/libavcodec/Makefile index 99cc021148..851ef73018 100644 --- a/libavcodec/Makefile +++ b/libavcodec/Makefile @@ -51,6 +51,9 @@ OBJS += i386/fdct_mmx.o i386/cputest.o \ i386/dsputil_mmx.o i386/mpegvideo_mmx.o \ i386/idct_mmx.o i386/motion_est_mmx.o \ i386/simple_idct_mmx.o i386/fft_sse.o +ifdef TARGET_BUILTIN_VECTOR +i386/fft_sse.o: CFLAGS+= -msse +endif endif # armv4l specific stuff @@ -131,7 +134,7 @@ alpha/motion_est_alpha.o: alpha/motion_est_alpha.c endif .depend: $(SRCS) - $(CC) -MM $(CFLAGS) $(SRCS) 1>.depend + $(CC) -MM $(CFLAGS) $^ 1>.depend dep: depend |