diff options
author | Zdenek Kabelac <kabi@informatics.muni.cz> | 2004-03-09 12:18:40 +0000 |
---|---|---|
committer | Zdenek Kabelac <kabi@informatics.muni.cz> | 2004-03-09 12:18:40 +0000 |
commit | 148beec7e8ad3b7b1d5a4304a3c48c44ed60a818 (patch) | |
tree | a6eb88993b8b32fabc44d113ef4c2795f61c1d2c | |
parent | e83a84ac418e71c060749f8180556daca6c4f382 (diff) | |
download | ffmpeg-148beec7e8ad3b7b1d5a4304a3c48c44ed60a818.tar.gz |
* missing opts for make dep
Originally committed as revision 2860 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | libavcodec/Makefile | 1 |
2 files changed, 2 insertions, 1 deletions
@@ -147,7 +147,7 @@ ifeq ($(BUILD_VHOOK),yes) endif .depend: $(SRCS) - $(CC) -MM $(CFLAGS) $^ 1>.depend + $(CC) -MM $(CFLAGS) $(SDL_CFLAGS) $^ 1>.depend .libs: lib @test -f .libs || touch .libs diff --git a/libavcodec/Makefile b/libavcodec/Makefile index 40f189bd04..03d90fe767 100644 --- a/libavcodec/Makefile +++ b/libavcodec/Makefile @@ -119,6 +119,7 @@ OBJS += i386/fdct_mmx.o i386/cputest.o \ i386/simple_idct_mmx.o i386/fft_sse.o i386/vp3dsp_mmx.o ifdef TARGET_BUILTIN_VECTOR i386/fft_sse.o: CFLAGS+= -msse +depend: CFLAGS+= -msse endif endif |