3 # (c) 2000, 2001, 2002 Fabrice Bellard
7 VPATH
=$(SRC_PATH
)/libavformat
9 CFLAGS
= $(OPTFLAGS
) -Wall
-g
-I..
-I
$(SRC_PATH
) -I
$(SRC_PATH
)/libavcodec
-DHAVE_AV_CONFIG_H
-D_FILE_OFFSET_BITS
=64 -D_LARGEFILE_SOURCE
-D_GNU_SOURCE
11 OBJS
= utils.o cutils.o allformats.o
14 OBJS
+=mpeg.o mpegts.o ffm.o crc.o img.o raw.o
rm.o asf.o \
15 avienc.o avidec.o wav.o swf.o au.o gif.o mov.o jpeg.o dv.o \
20 OBJS
+= avio.o aviobuf.o file.o
23 ifeq ($(BUILD_STRPTIME
),yes
)
27 ifeq ($(CONFIG_VIDEO4LINUX
),yes
)
31 ifeq ($(CONFIG_AUDIO_OSS
),yes
)
35 ifeq ($(CONFIG_AUDIO_BEOS
),yes
)
39 ifeq ($(CONFIG_NETWORK
),yes
)
40 OBJS
+= udp.o tcp.o http.o rtsp.o rtp.o rtpproto.o
42 ifeq ($(NEED_INET_ATON
),yes
)
47 ifeq ($(CONFIG_VORBIS
),yes
)
51 LIB
= $(LIBPREF
)avformat
$(LIBSUF
)
58 ifneq ($(CONFIG_OS2
),yes
)
63 install -m
644 $(LIB
) $(prefix)/lib
64 mkdir
-p
$(prefix)/include/ffmpeg
65 install -m
644 $(SRC_PATH
)/libavformat
/avformat.h
$(SRC_PATH
)/libavformat
/avio.h \
66 $(SRC_PATH
)/libavformat
/rtp.h
$(SRC_PATH
)/libavformat
/rtsp.h \
67 $(SRC_PATH
)/libavformat
/rtspcodes.h \
68 $(prefix)/include/ffmpeg
71 $(CC
) $(CFLAGS
) -c
-o
$@
$<
73 # BeOS: remove -Wall to get rid of all the "multibyte constant" warnings
75 g
++ $(subst -Wall
,,$(CFLAGS
)) -c
-o
$@
$<
78 rm -f
*.o
*~
*.a
$(LIB
)