Commit 97733c69 authored by bellard's avatar bellard

fixed dependancy generation (I want the case where SRC_PATH is not . to work...

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


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@1488 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent c7b3257b
...@@ -51,6 +51,9 @@ OBJS += i386/fdct_mmx.o i386/cputest.o \ ...@@ -51,6 +51,9 @@ OBJS += i386/fdct_mmx.o i386/cputest.o \
i386/dsputil_mmx.o i386/mpegvideo_mmx.o \ i386/dsputil_mmx.o i386/mpegvideo_mmx.o \
i386/idct_mmx.o i386/motion_est_mmx.o \ i386/idct_mmx.o i386/motion_est_mmx.o \
i386/simple_idct_mmx.o i386/fft_sse.o i386/simple_idct_mmx.o i386/fft_sse.o
ifdef TARGET_BUILTIN_VECTOR
i386/fft_sse.o: CFLAGS+= -msse
endif
endif endif
# armv4l specific stuff # armv4l specific stuff
...@@ -131,7 +134,7 @@ alpha/motion_est_alpha.o: alpha/motion_est_alpha.c ...@@ -131,7 +134,7 @@ alpha/motion_est_alpha.o: alpha/motion_est_alpha.c
endif endif
.depend: $(SRCS) .depend: $(SRCS)
$(CC) -MM $(CFLAGS) $(SRCS) 1>.depend $(CC) -MM $(CFLAGS) $^ 1>.depend
dep: depend dep: depend
......
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