# HG changeset patch # User bellard # Date 1043228103 0 # Node ID a0a7149be54360e238a7069a7b8619ba2e09fc01 # Parent d6ba0641cc36981cd35505e09895e8e4aa889bea 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 diff -r d6ba0641cc36 -r a0a7149be543 Makefile --- a/Makefile Tue Jan 21 21:30:48 2003 +0000 +++ b/Makefile Wed Jan 22 09:35:03 2003 +0000 @@ -51,6 +51,9 @@ 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 @@ endif .depend: $(SRCS) - $(CC) -MM $(CFLAGS) $(SRCS) 1>.depend + $(CC) -MM $(CFLAGS) $^ 1>.depend dep: depend