]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/Makefile
some sanity checks on what is muxed, invalid timestamps in mpeg are very common and...
[ffmpeg] / libavformat / Makefile
index 23aecba13720c4b979c25d761c50036489be87c1..e54bcc2209c09fb0cd5476753171cf686f5bd684 100644 (file)
@@ -12,11 +12,11 @@ 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 raw.o rm.o \
+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 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
+      sierravmd.o matroska.o sol.o electronicarts.o nsvdec.o
 
 ifeq ($(CONFIG_RISKY),yes)
 OBJS+= asf.o
@@ -47,6 +47,10 @@ 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
@@ -70,11 +74,20 @@ ifeq ($(CONFIG_VORBIS),yes)
 OBJS+= ogg.o
 endif
 
+ifeq ($(TARGET_ARCH_SPARC64),yes)
+CFLAGS+= -mcpu=ultrasparc -mtune=ultrasparc
+endif
+
 LIB= $(LIBPREF)avformat$(LIBSUF)
 ifeq ($(BUILD_SHARED),yes)
 SLIB= $(SLIBPREF)avformat$(SLIBSUF)
 endif
 
+EXTRALIBS+=-lavcodec -L../libavcodec
+ifeq ($(CONFIG_MP3LAME),yes)
+EXTRALIBS+=-lmp3lame
+endif
+
 SRCS := $(OBJS:.o=.c) $(PPOBJS:.o=.cpp)
 
 all: $(LIB) $(SLIB)
@@ -98,10 +111,10 @@ depend: $(SRCS)
 ifeq ($(BUILD_SHARED),yes)
 install: all install-headers
 ifeq ($(CONFIG_WIN32),yes)
-       install -s -m 755 $(SLIB) "$(prefix)"
+       install $(INSTALLSTRIP) -m 755 $(SLIB) "$(prefix)"
 else
        install -d $(prefix)/lib
-       install -s -m 755 $(SLIB) $(prefix)/lib/libavformat-$(VERSION).so
+       install $(INSTALLSTRIP) -m 755 $(SLIB) $(prefix)/lib/libavformat-$(VERSION).so
        ln -sf libavformat-$(VERSION).so $(prefix)/lib/libavformat.so
        ldconfig || true
 endif
@@ -126,8 +139,8 @@ install-headers:
 %.o: %.cpp
        g++ $(subst -Wall,,$(CFLAGS)) -c -o $@ $< 
 
-clean: 
-       rm -f *.o *.d .depend *~ *.a $(LIB)
+distclean clean: 
+       rm -f *.o *.d .depend *~ *.a *.so $(LIB)
 
 #
 # include dependency files if they exist