2002-05-25 22:34:32 +00:00
|
|
|
#
|
|
|
|
# libavformat Makefile
|
|
|
|
# (c) 2000, 2001, 2002 Fabrice Bellard
|
|
|
|
#
|
2001-07-23 20:06:54 +00:00
|
|
|
include ../config.mak
|
2002-05-18 23:07:57 +00:00
|
|
|
|
2002-11-29 14:56:03 +00:00
|
|
|
VPATH=$(SRC_PATH)/libavformat
|
2002-05-18 23:07:57 +00:00
|
|
|
|
2002-07-18 20:27:09 +00:00
|
|
|
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
|
2001-07-22 14:37:44 +00:00
|
|
|
|
2002-07-25 16:06:41 +00:00
|
|
|
OBJS= utils.o cutils.o allformats.o
|
2003-02-06 15:09:39 +00:00
|
|
|
PPOBJS=
|
2002-05-20 16:31:13 +00:00
|
|
|
|
|
|
|
# mux and demuxes
|
2003-01-29 12:00:11 +00:00
|
|
|
OBJS+=mpeg.o mpegts.o ffm.o crc.o img.o raw.o rm.o \
|
2003-02-02 19:18:09 +00:00
|
|
|
avienc.o avidec.o wav.o swf.o au.o gif.o mov.o mpjpeg.o dv.o \
|
2003-01-11 05:02:14 +00:00
|
|
|
yuv4mpeg.o
|
2003-01-29 12:00:11 +00:00
|
|
|
|
|
|
|
ifeq ($(CONFIG_RISKY),yes)
|
|
|
|
OBJS+= asf.o
|
|
|
|
endif
|
|
|
|
|
2003-01-11 05:02:14 +00:00
|
|
|
# image formats
|
2003-02-04 23:44:26 +00:00
|
|
|
OBJS+= pnm.o yuv.o png.o jpeg.o gifdec.o
|
2002-05-20 16:31:13 +00:00
|
|
|
# file I/O
|
|
|
|
OBJS+= avio.o aviobuf.o file.o
|
2003-01-11 05:02:14 +00:00
|
|
|
OBJS+= framehook.o
|
2001-08-13 21:37:10 +00:00
|
|
|
|
2002-07-27 03:00:39 +00:00
|
|
|
ifeq ($(BUILD_STRPTIME),yes)
|
|
|
|
OBJS+= strptime.o
|
|
|
|
endif
|
|
|
|
|
2002-05-25 22:34:32 +00:00
|
|
|
ifeq ($(CONFIG_VIDEO4LINUX),yes)
|
|
|
|
OBJS+= grab.o
|
2001-08-13 21:37:10 +00:00
|
|
|
endif
|
2001-07-22 14:37:44 +00:00
|
|
|
|
2003-01-22 22:40:52 +00:00
|
|
|
ifeq ($(CONFIG_DV1394),yes)
|
|
|
|
OBJS+= dv1394.o
|
|
|
|
endif
|
|
|
|
|
2002-05-25 22:34:32 +00:00
|
|
|
ifeq ($(CONFIG_AUDIO_OSS),yes)
|
|
|
|
OBJS+= audio.o
|
|
|
|
endif
|
|
|
|
|
2002-11-05 00:38:06 +00:00
|
|
|
ifeq ($(CONFIG_AUDIO_BEOS),yes)
|
2003-02-06 15:09:39 +00:00
|
|
|
PPOBJS+= beosaudio.o
|
2002-11-05 00:38:06 +00:00
|
|
|
endif
|
|
|
|
|
2002-05-25 22:34:32 +00:00
|
|
|
ifeq ($(CONFIG_NETWORK),yes)
|
2002-07-24 18:04:24 +00:00
|
|
|
OBJS+= udp.o tcp.o http.o rtsp.o rtp.o rtpproto.o
|
2003-02-06 15:09:39 +00:00
|
|
|
# BeOS and Darwin network stuff
|
2002-11-27 02:45:14 +00:00
|
|
|
ifeq ($(NEED_INET_ATON),yes)
|
2002-11-02 10:35:07 +00:00
|
|
|
OBJS+= barpainet.o
|
|
|
|
endif
|
2001-08-15 22:33:03 +00:00
|
|
|
endif
|
|
|
|
|
2002-09-01 18:07:56 +00:00
|
|
|
ifeq ($(CONFIG_VORBIS),yes)
|
|
|
|
OBJS+= ogg.o
|
|
|
|
endif
|
|
|
|
|
2003-01-11 20:34:38 +00:00
|
|
|
LIB= $(LIBPREF)avformat$(LIBSUF)
|
2001-07-22 14:37:44 +00:00
|
|
|
|
2003-02-06 15:09:39 +00:00
|
|
|
SRCS := $(OBJS:.o=.c) $(PPOBJS:.o=.cpp)
|
2003-01-14 15:30:42 +00:00
|
|
|
|
2001-07-22 14:37:44 +00:00
|
|
|
all: $(LIB)
|
|
|
|
|
2003-02-06 15:09:39 +00:00
|
|
|
$(LIB): $(OBJS) $(PPOBJS)
|
2001-07-22 14:37:44 +00:00
|
|
|
rm -f $@
|
2003-02-06 15:09:39 +00:00
|
|
|
$(AR) rc $@ $(OBJS) $(PPOBJS)
|
2003-01-11 20:34:38 +00:00
|
|
|
ifneq ($(CONFIG_OS2),yes)
|
2002-09-02 16:48:40 +00:00
|
|
|
$(RANLIB) $@
|
2003-01-11 20:34:38 +00:00
|
|
|
endif
|
2001-07-22 14:37:44 +00:00
|
|
|
|
2003-02-01 20:53:07 +00:00
|
|
|
depend: $(SRCS)
|
2003-01-22 09:53:25 +00:00
|
|
|
$(CC) -MM $(CFLAGS) $^ 1>.depend
|
|
|
|
|
2002-07-25 16:06:41 +00:00
|
|
|
installlib: all
|
|
|
|
install -m 644 $(LIB) $(prefix)/lib
|
|
|
|
mkdir -p $(prefix)/include/ffmpeg
|
2002-12-30 01:07:47 +00:00
|
|
|
install -m 644 $(SRC_PATH)/libavformat/avformat.h $(SRC_PATH)/libavformat/avio.h \
|
|
|
|
$(SRC_PATH)/libavformat/rtp.h $(SRC_PATH)/libavformat/rtsp.h \
|
|
|
|
$(SRC_PATH)/libavformat/rtspcodes.h \
|
2002-07-25 16:06:41 +00:00
|
|
|
$(prefix)/include/ffmpeg
|
|
|
|
|
2001-07-22 14:37:44 +00:00
|
|
|
%.o: %.c
|
|
|
|
$(CC) $(CFLAGS) -c -o $@ $<
|
|
|
|
|
2002-11-05 00:38:06 +00:00
|
|
|
# BeOS: remove -Wall to get rid of all the "multibyte constant" warnings
|
|
|
|
%.o: %.cpp
|
|
|
|
g++ $(subst -Wall,,$(CFLAGS)) -c -o $@ $<
|
|
|
|
|
2001-07-22 14:37:44 +00:00
|
|
|
clean:
|
2003-01-22 09:53:25 +00:00
|
|
|
rm -f *.o *.d .depend *~ *.a $(LIB)
|
|
|
|
|
|
|
|
#
|
|
|
|
# include dependency files if they exist
|
|
|
|
#
|
|
|
|
ifneq ($(wildcard .depend),)
|
|
|
|
include .depend
|
|
|
|
endif
|