2002-05-26 01:34:32 +03:00
|
|
|
#
|
|
|
|
# libavformat Makefile
|
2003-09-16 23:29:19 +03:00
|
|
|
# (c) 2000-2003 Fabrice Bellard
|
2002-05-26 01:34:32 +03:00
|
|
|
#
|
2001-07-23 23:06:54 +03:00
|
|
|
include ../config.mak
|
2002-05-19 02:07:57 +03:00
|
|
|
|
2002-11-29 16:56:03 +02:00
|
|
|
VPATH=$(SRC_PATH)/libavformat
|
2002-05-19 02:07:57 +03:00
|
|
|
|
2003-10-18 21:47:06 +03:00
|
|
|
CFLAGS=$(OPTFLAGS) -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 17:37:44 +03:00
|
|
|
|
2003-09-09 00:20:55 +03:00
|
|
|
OBJS= utils.o cutils.o os_support.o allformats.o
|
2003-02-06 17:09:39 +02:00
|
|
|
PPOBJS=
|
2002-05-20 19:31:13 +03:00
|
|
|
|
|
|
|
# mux and demuxes
|
2004-07-15 21:32:54 +03:00
|
|
|
OBJS+=mpeg.o mpegts.o mpegtsenc.o ffm.o crc.o img.o img2.o raw.o rm.o \
|
2003-09-29 20:54:07 +03:00
|
|
|
avienc.o avidec.o wav.o swf.o au.o gif.o mov.o mpjpeg.o dv.o \
|
2003-09-05 21:45:32 +03:00
|
|
|
yuv4mpeg.o 4xm.o flvenc.o flvdec.o movenc.o psxstr.o idroq.o ipmovie.o \
|
2004-01-02 06:47:02 +02:00
|
|
|
nut.o wc3movie.o mp3.o westwood.o segafilm.o idcin.o flic.o \
|
2004-10-16 22:33:57 +03:00
|
|
|
sierravmd.o matroska.o sol.o electronicarts.o
|
2003-01-29 14:00:11 +02:00
|
|
|
|
|
|
|
ifeq ($(CONFIG_RISKY),yes)
|
|
|
|
OBJS+= asf.o
|
2004-03-06 13:07:37 +02:00
|
|
|
OBJS+= asf-enc.o
|
2003-01-29 14:00:11 +02:00
|
|
|
endif
|
|
|
|
|
2003-10-14 14:36:03 +03:00
|
|
|
ifeq ($(AMR_NB),yes)
|
|
|
|
OBJS+= amr.o
|
|
|
|
endif
|
|
|
|
ifeq ($(AMR_NB_FIXED),yes)
|
|
|
|
OBJS+= amr.o
|
|
|
|
endif
|
|
|
|
ifeq ($(AMR_WB),yes)
|
2003-06-05 17:30:52 +03:00
|
|
|
OBJS+= amr.o
|
|
|
|
endif
|
|
|
|
|
2003-01-11 07:02:14 +02:00
|
|
|
# image formats
|
2004-03-13 19:30:37 +02:00
|
|
|
OBJS+= pnm.o yuv.o png.o jpeg.o gifdec.o sgi.o
|
2002-05-20 19:31:13 +03:00
|
|
|
# file I/O
|
|
|
|
OBJS+= avio.o aviobuf.o file.o
|
2003-01-11 07:02:14 +02:00
|
|
|
OBJS+= framehook.o
|
2001-08-14 00:37:10 +03:00
|
|
|
|
2002-05-26 01:34:32 +03:00
|
|
|
ifeq ($(CONFIG_VIDEO4LINUX),yes)
|
|
|
|
OBJS+= grab.o
|
2001-08-14 00:37:10 +03:00
|
|
|
endif
|
2001-07-22 17:37:44 +03:00
|
|
|
|
2003-01-23 00:40:52 +02:00
|
|
|
ifeq ($(CONFIG_DV1394),yes)
|
|
|
|
OBJS+= dv1394.o
|
|
|
|
endif
|
|
|
|
|
2002-05-26 01:34:32 +03:00
|
|
|
ifeq ($(CONFIG_AUDIO_OSS),yes)
|
|
|
|
OBJS+= audio.o
|
|
|
|
endif
|
|
|
|
|
2002-11-05 02:38:06 +02:00
|
|
|
ifeq ($(CONFIG_AUDIO_BEOS),yes)
|
2003-02-06 17:09:39 +02:00
|
|
|
PPOBJS+= beosaudio.o
|
2003-07-15 16:35:20 +03:00
|
|
|
EXTRALIBS+=-lbe -lmedia
|
|
|
|
# this should be the default !
|
|
|
|
EXTRALIBS+=-lavcodec -L../libavcodec
|
2002-11-05 02:38:06 +02:00
|
|
|
endif
|
|
|
|
|
2002-05-26 01:34:32 +03:00
|
|
|
ifeq ($(CONFIG_NETWORK),yes)
|
2002-07-24 21:04:24 +03:00
|
|
|
OBJS+= udp.o tcp.o http.o rtsp.o rtp.o rtpproto.o
|
2003-02-06 17:09:39 +02:00
|
|
|
# BeOS and Darwin network stuff
|
2002-11-27 04:45:14 +02:00
|
|
|
ifeq ($(NEED_INET_ATON),yes)
|
2002-11-02 12:35:07 +02:00
|
|
|
OBJS+= barpainet.o
|
|
|
|
endif
|
2001-08-16 01:33:03 +03:00
|
|
|
endif
|
|
|
|
|
2002-09-01 21:07:56 +03:00
|
|
|
ifeq ($(CONFIG_VORBIS),yes)
|
|
|
|
OBJS+= ogg.o
|
|
|
|
endif
|
|
|
|
|
2004-04-24 18:16:23 +03:00
|
|
|
ifeq ($(TARGET_ARCH_SPARC64),yes)
|
|
|
|
CFLAGS+= -mcpu=ultrasparc -mtune=ultrasparc
|
|
|
|
endif
|
|
|
|
|
2003-01-11 22:34:38 +02:00
|
|
|
LIB= $(LIBPREF)avformat$(LIBSUF)
|
2003-07-12 00:33:27 +03:00
|
|
|
ifeq ($(BUILD_SHARED),yes)
|
|
|
|
SLIB= $(SLIBPREF)avformat$(SLIBSUF)
|
|
|
|
endif
|
2001-07-22 17:37:44 +03:00
|
|
|
|
2003-02-06 17:09:39 +02:00
|
|
|
SRCS := $(OBJS:.o=.c) $(PPOBJS:.o=.cpp)
|
2003-01-14 17:30:42 +02:00
|
|
|
|
2003-07-12 00:33:27 +03:00
|
|
|
all: $(LIB) $(SLIB)
|
2001-07-22 17:37:44 +03:00
|
|
|
|
2003-02-06 17:09:39 +02:00
|
|
|
$(LIB): $(OBJS) $(PPOBJS)
|
2001-07-22 17:37:44 +03:00
|
|
|
rm -f $@
|
2003-02-06 17:09:39 +02:00
|
|
|
$(AR) rc $@ $(OBJS) $(PPOBJS)
|
2002-09-02 19:48:40 +03:00
|
|
|
$(RANLIB) $@
|
2001-07-22 17:37:44 +03:00
|
|
|
|
2003-07-12 00:33:27 +03:00
|
|
|
$(SLIB): $(OBJS)
|
2003-09-16 01:27:43 +03:00
|
|
|
ifeq ($(CONFIG_WIN32),yes)
|
2003-09-16 23:29:19 +03:00
|
|
|
$(CC) $(SHFLAGS) -Wl,--output-def,$(@:.dll=.def) -o $@ $(OBJS) $(PPOBJS) $(EXTRALIBS) $(VPATH)/../libavcodec/avcodec.dll
|
2003-09-04 11:21:27 +03:00
|
|
|
-lib /machine:i386 /def:$(@:.dll=.def)
|
|
|
|
else
|
2003-09-16 23:29:19 +03:00
|
|
|
$(CC) $(SHFLAGS) -o $@ $(OBJS) $(PPOBJS) $(EXTRALIBS)
|
2003-09-04 11:21:27 +03:00
|
|
|
endif
|
2003-07-12 00:33:27 +03:00
|
|
|
|
2003-02-01 22:53:07 +02:00
|
|
|
depend: $(SRCS)
|
2003-01-22 11:53:25 +02:00
|
|
|
$(CC) -MM $(CFLAGS) $^ 1>.depend
|
|
|
|
|
2003-07-12 00:33:27 +03:00
|
|
|
ifeq ($(BUILD_SHARED),yes)
|
2003-09-16 01:27:43 +03:00
|
|
|
install: all install-headers
|
|
|
|
ifeq ($(CONFIG_WIN32),yes)
|
2004-10-01 16:32:13 +03:00
|
|
|
install $(INSTALLSTRIP) -m 755 $(SLIB) "$(prefix)"
|
2003-09-16 01:27:43 +03:00
|
|
|
else
|
2003-07-12 00:33:27 +03:00
|
|
|
install -d $(prefix)/lib
|
2004-10-01 16:32:13 +03:00
|
|
|
install $(INSTALLSTRIP) -m 755 $(SLIB) $(prefix)/lib/libavformat-$(VERSION).so
|
2003-07-12 00:33:27 +03:00
|
|
|
ln -sf libavformat-$(VERSION).so $(prefix)/lib/libavformat.so
|
|
|
|
ldconfig || true
|
2003-09-16 01:27:43 +03:00
|
|
|
endif
|
|
|
|
else
|
|
|
|
install:
|
2003-07-12 00:33:27 +03:00
|
|
|
endif
|
|
|
|
|
2003-09-16 01:27:43 +03:00
|
|
|
installlib: all install-headers
|
2002-07-25 19:06:41 +03:00
|
|
|
install -m 644 $(LIB) $(prefix)/lib
|
2003-09-16 01:27:43 +03:00
|
|
|
|
|
|
|
install-headers:
|
|
|
|
mkdir -p "$(prefix)/include/ffmpeg"
|
2002-12-30 03:07:47 +02: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 \
|
2003-09-16 01:27:43 +03:00
|
|
|
"$(prefix)/include/ffmpeg"
|
2002-07-25 19:06:41 +03:00
|
|
|
|
2001-07-22 17:37:44 +03:00
|
|
|
%.o: %.c
|
|
|
|
$(CC) $(CFLAGS) -c -o $@ $<
|
|
|
|
|
2002-11-05 02:38:06 +02:00
|
|
|
# BeOS: remove -Wall to get rid of all the "multibyte constant" warnings
|
|
|
|
%.o: %.cpp
|
|
|
|
g++ $(subst -Wall,,$(CFLAGS)) -c -o $@ $<
|
|
|
|
|
2004-04-12 21:42:23 +03:00
|
|
|
distclean clean:
|
2004-09-16 20:15:58 +03:00
|
|
|
rm -f *.o *.d .depend *~ *.a *.so $(LIB)
|
2003-01-22 11:53:25 +02:00
|
|
|
|
|
|
|
#
|
|
|
|
# include dependency files if they exist
|
|
|
|
#
|
|
|
|
ifneq ($(wildcard .depend),)
|
|
|
|
include .depend
|
|
|
|
endif
|