summaryrefslogtreecommitdiff
path: root/libav/Makefile
diff options
context:
space:
mode:
authorFabrice Bellard <fabrice@bellard.org>2001-08-15 22:33:03 +0000
committerFabrice Bellard <fabrice@bellard.org>2001-08-15 22:33:03 +0000
commita74127c071fd46cdd40b9beca6721a9ca6338142 (patch)
treece84b21312cf30edc838cd5fbfba62ac21912b9b /libav/Makefile
parentd0a0b2483e7b62e0f72c3b60f0a5f24175d665ee (diff)
win32 fixes
Originally committed as revision 110 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libav/Makefile')
-rw-r--r--libav/Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/libav/Makefile b/libav/Makefile
index 80dfd389c9..17e4469114 100644
--- a/libav/Makefile
+++ b/libav/Makefile
@@ -4,12 +4,16 @@ CFLAGS= $(OPTFLAGS) -Wall -g -I../libavcodec -DHAVE_AV_CONFIG_H
OBJS= rm.o mpeg.o asf.o avienc.o jpeg.o swf.o wav.o raw.o \
avidec.o ffm.o \
avio.o aviobuf.o utils.o \
- udp.o http.o file.o img.o
+ file.o img.o
ifeq ($(CONFIG_GRAB),yes)
OBJS+= grab.o audio.o
endif
+ifneq ($(CONFIG_WIN32),yes)
+OBJS+= udp.o http.o
+endif
+
LIB= libav.a
all: $(LIB)