You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

152 lines
3.4KB

  1. #
  2. # libavformat Makefile
  3. # (c) 2000-2003 Fabrice Bellard
  4. #
  5. include ../config.mak
  6. VPATH=$(SRC_PATH)/libavformat
  7. 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
  8. OBJS= utils.o cutils.o os_support.o allformats.o
  9. PPOBJS=
  10. # mux and demuxes
  11. OBJS+=mpeg.o mpegts.o mpegtsenc.o ffm.o crc.o img.o img2.o raw.o rm.o \
  12. avienc.o avidec.o wav.o mmf.o swf.o au.o gif.o mov.o mpjpeg.o dv.o \
  13. yuv4mpeg.o 4xm.o flvenc.o flvdec.o movenc.o psxstr.o idroq.o ipmovie.o \
  14. nut.o wc3movie.o mp3.o westwood.o segafilm.o idcin.o flic.o \
  15. sierravmd.o matroska.o sol.o electronicarts.o nsvdec.o asf.o asf-enc.o \
  16. ogg2.o oggparsevorbis.o oggparsetheora.o oggparseflac.o
  17. AMROBJS=
  18. ifeq ($(AMR_NB),yes)
  19. AMROBJS= amr.o
  20. endif
  21. ifeq ($(AMR_NB_FIXED),yes)
  22. AMROBJS= amr.o
  23. endif
  24. ifeq ($(AMR_WB),yes)
  25. AMROBJS= amr.o
  26. endif
  27. OBJS+= $(AMROBJS)
  28. # image formats
  29. OBJS+= pnm.o yuv.o png.o jpeg.o gifdec.o sgi.o
  30. # file I/O
  31. OBJS+= avio.o aviobuf.o file.o
  32. OBJS+= framehook.o
  33. ifeq ($(CONFIG_VIDEO4LINUX),yes)
  34. OBJS+= grab.o
  35. endif
  36. ifeq ($(CONFIG_BKTR),yes)
  37. OBJS+= grab_bktr.o
  38. endif
  39. ifeq ($(CONFIG_DV1394),yes)
  40. OBJS+= dv1394.o
  41. endif
  42. ifeq ($(CONFIG_DC1394),yes)
  43. OBJS+= dc1394.o
  44. endif
  45. ifeq ($(CONFIG_AUDIO_OSS),yes)
  46. OBJS+= audio.o
  47. endif
  48. ifeq ($(CONFIG_AUDIO_BEOS),yes)
  49. PPOBJS+= beosaudio.o
  50. EXTRALIBS+=-lbe -lmedia
  51. endif
  52. ifeq ($(CONFIG_NETWORK),yes)
  53. OBJS+= udp.o tcp.o http.o rtsp.o rtp.o rtpproto.o
  54. # BeOS and Darwin network stuff
  55. ifeq ($(NEED_INET_ATON),yes)
  56. OBJS+= barpainet.o
  57. endif
  58. endif
  59. ifeq ($(CONFIG_LIBOGG),yes)
  60. OBJS+= ogg.o
  61. endif
  62. ifeq ($(TARGET_ARCH_SPARC64),yes)
  63. CFLAGS+= -mcpu=ultrasparc -mtune=ultrasparc
  64. endif
  65. LIB= $(LIBPREF)avformat$(LIBSUF)
  66. ifeq ($(BUILD_SHARED),yes)
  67. SLIB= $(SLIBPREF)avformat$(SLIBSUF)
  68. AVCLIBS+=-lavcodec$(BUILDSUF) -L../libavcodec
  69. ifeq ($(CONFIG_MP3LAME),yes)
  70. AVCLIBS+=-lmp3lame
  71. endif
  72. endif
  73. SRCS := $(OBJS:.o=.c) $(PPOBJS:.o=.cpp)
  74. all: $(LIB) $(SLIB)
  75. $(LIB): $(OBJS) $(PPOBJS)
  76. rm -f $@
  77. $(AR) rc $@ $(OBJS) $(PPOBJS)
  78. $(RANLIB) $@
  79. $(SLIB): $(OBJS)
  80. ifeq ($(CONFIG_WIN32),yes)
  81. $(CC) $(SHFLAGS) -Wl,--output-def,$(@:.dll=.def) -o $@ $(OBJS) $(PPOBJS) $(AVCLIBS) $(EXTRALIBS)
  82. -lib /machine:i386 /def:$(@:.dll=.def)
  83. else
  84. $(CC) $(SHFLAGS) $(LDFLAGS) -o $@ $(OBJS) $(PPOBJS) $(AVCLIBS) $(EXTRALIBS)
  85. endif
  86. depend: $(SRCS)
  87. $(CC) -MM $(CFLAGS) $^ 1>.depend
  88. ifeq ($(BUILD_SHARED),yes)
  89. install: all install-headers
  90. ifeq ($(CONFIG_WIN32),yes)
  91. install $(INSTALLSTRIP) -m 755 $(SLIB) "$(prefix)"
  92. else
  93. install -d $(libdir)
  94. install $(INSTALLSTRIP) -m 755 $(SLIB) $(libdir)/libavformat-$(VERSION).so
  95. ln -sf libavformat-$(VERSION).so $(libdir)/libavformat.so
  96. $(LDCONFIG) || true
  97. endif
  98. else
  99. install:
  100. endif
  101. installlib: all install-headers
  102. install -m 644 $(LIB) "$(libdir)"
  103. install-headers:
  104. mkdir -p "$(prefix)/include/ffmpeg"
  105. install -m 644 $(SRC_PATH)/libavformat/avformat.h $(SRC_PATH)/libavformat/avio.h \
  106. $(SRC_PATH)/libavformat/rtp.h $(SRC_PATH)/libavformat/rtsp.h \
  107. $(SRC_PATH)/libavformat/rtspcodes.h \
  108. "$(prefix)/include/ffmpeg"
  109. install -d $(libdir)/pkgconfig
  110. install -m 644 ../libavformat.pc $(libdir)/pkgconfig
  111. %.o: %.c
  112. $(CC) $(CFLAGS) $(LIBOBJFLAGS) -c -o $@ $<
  113. # BeOS: remove -Wall to get rid of all the "multibyte constant" warnings
  114. %.o: %.cpp
  115. g++ $(subst -Wall,,$(CFLAGS)) -c -o $@ $<
  116. distclean clean:
  117. rm -f *.o *.d .depend *~ *.a *.so $(LIB)
  118. #
  119. # include dependency files if they exist
  120. #
  121. ifneq ($(wildcard .depend),)
  122. include .depend
  123. endif