123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156 |
- #
- # libavformat Makefile
- # (c) 2000-2003 Fabrice Bellard
- #
- include ../config.mak
- VPATH=$(SRC_PATH)/libavformat
- CFLAGS=$(OPTFLAGS) -I.. -I$(SRC_PATH) -I$(SRC_PATH)/libavutil -I$(SRC_PATH)/libavcodec -DHAVE_AV_CONFIG_H -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_GNU_SOURCE
- OBJS= utils.o cutils.o os_support.o allformats.o
- PPOBJS=
- # mux and demuxes
- OBJS+=mpeg.o mpegts.o mpegtsenc.o ffm.o crc.o img.o img2.o raw.o rm.o \
- avienc.o avidec.o wav.o mmf.o swf.o au.o gif.o mov.o mpjpeg.o dv.o \
- yuv4mpeg.o 4xm.o flvenc.o flvdec.o movenc.o psxstr.o idroq.o ipmovie.o \
- nut.o wc3movie.o mp3.o westwood.o segafilm.o idcin.o flic.o \
- sierravmd.o matroska.o sol.o electronicarts.o nsvdec.o asf.o asf-enc.o \
- ogg2.o oggparsevorbis.o oggparsetheora.o oggparseflac.o daud.o
- AMROBJS=
- ifeq ($(AMR_NB),yes)
- AMROBJS= amr.o
- endif
- ifeq ($(AMR_NB_FIXED),yes)
- AMROBJS= amr.o
- endif
- ifeq ($(AMR_WB),yes)
- AMROBJS= amr.o
- endif
- OBJS+= $(AMROBJS)
- # image formats
- OBJS+= pnm.o yuv.o png.o jpeg.o gifdec.o sgi.o
- # file I/O
- OBJS+= avio.o aviobuf.o file.o
- OBJS+= framehook.o
- ifeq ($(CONFIG_VIDEO4LINUX),yes)
- OBJS+= grab.o
- endif
- ifeq ($(CONFIG_BKTR),yes)
- OBJS+= grab_bktr.o
- endif
- ifeq ($(CONFIG_DV1394),yes)
- OBJS+= dv1394.o
- endif
- ifeq ($(CONFIG_DC1394),yes)
- OBJS+= dc1394.o
- endif
- ifeq ($(CONFIG_AUDIO_OSS),yes)
- OBJS+= audio.o
- endif
- EXTRALIBS += -L../libavutil -lavutil$(BUILDSUF)
- ifeq ($(CONFIG_AUDIO_BEOS),yes)
- PPOBJS+= beosaudio.o
- endif
- ifeq ($(CONFIG_NETWORK),yes)
- OBJS+= udp.o tcp.o http.o rtsp.o rtp.o rtpproto.o
- # BeOS and Darwin network stuff
- ifeq ($(NEED_INET_ATON),yes)
- OBJS+= barpainet.o
- endif
- endif
- ifeq ($(CONFIG_LIBOGG),yes)
- OBJS+= ogg.o
- endif
- ifeq ($(TARGET_ARCH_SPARC64),yes)
- CFLAGS+= -mcpu=ultrasparc -mtune=ultrasparc
- endif
- NAME=avformat
- ifeq ($(BUILD_SHARED),yes)
- LIBVERSION=$(LAVFVERSION)
- LIBMAJOR=$(LAVFMAJOR)
- AVCLIBS+=-lavcodec$(BUILDSUF) -L../libavcodec -lavutil$(BUILDSUF) -L../libavutil
- endif
- SRCS := $(OBJS:.o=.c) $(PPOBJS:.o=.cpp)
- all: $(LIB) $(SLIBNAME)
- $(LIB): $(OBJS) $(PPOBJS)
- rm -f $@
- $(AR) rc $@ $(OBJS) $(PPOBJS)
- $(RANLIB) $@
- $(SLIBNAME): $(OBJS)
- ifeq ($(CONFIG_WIN32),yes)
- $(CC) $(SHFLAGS) -Wl,--output-def,$(@:.dll=.def) -o $@ $(OBJS) $(PPOBJS) $(AVCLIBS) $(EXTRALIBS)
- -lib /machine:i386 /def:$(@:.dll=.def)
- else
- $(CC) $(SHFLAGS) $(LDFLAGS) -o $@ $(OBJS) $(PPOBJS) $(AVCLIBS) $(EXTRALIBS)
- endif
- depend: $(SRCS)
- $(CC) -MM $(CFLAGS) $^ 1>.depend
- ifeq ($(BUILD_SHARED),yes)
- install: all install-headers
- ifeq ($(CONFIG_WIN32),yes)
- install $(INSTALLSTRIP) -m 755 $(SLIBNAME) "$(prefix)"
- else
- install -d $(libdir)
- install $(INSTALLSTRIP) -m 755 $(SLIBNAME) \
- $(libdir)/$(SLIBNAME_WITH_VERSION)
- ln -sf $(SLIBNAME_WITH_VERSION) \
- $(libdir)/$(SLIBNAME_WITH_MAJOR)
- ln -sf $(SLIBNAME_WITH_VERSION) \
- $(libdir)/$(SLIBNAME)
- $(LDCONFIG) || true
- endif
- else
- install:
- endif
- installlib: all install-headers
- install -m 644 $(LIB) "$(libdir)"
- install-headers:
- mkdir -p "$(prefix)/include/ffmpeg"
- 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 \
- "$(prefix)/include/ffmpeg"
- install -d "$(libdir)/pkgconfig"
- install -m 644 ../libavformat.pc "$(libdir)/pkgconfig"
- %.o: %.c
- $(CC) $(CFLAGS) $(LIBOBJFLAGS) -c -o $@ $<
- # BeOS: remove -Wall to get rid of all the "multibyte constant" warnings
- %.o: %.cpp
- g++ $(subst -Wall,,$(CFLAGS)) -c -o $@ $<
- clean:
- rm -f *.o *.d *~ *.a *.lib *.so *.dylib *.dll
- distclean: clean
- rm -f Makefile.bak .depend
- #
- # include dependency files if they exist
- #
- ifneq ($(wildcard .depend),)
- include .depend
- endif
|