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.

119 lines
2.7KB

  1. include ../config.mak
  2. CFLAGS= $(OPTFLAGS) -Wall -g -DHAVE_AV_CONFIG_H
  3. LDFLAGS= -g
  4. OBJS= common.o utils.o mpegvideo.o h263.o jrevdct.o jfdctfst.o \
  5. mpegaudio.o ac3enc.o mjpeg.o resample.o dsputil.o \
  6. motion_est.o imgconvert.o imgresample.o msmpeg4.o \
  7. mpeg12.o h263dec.o rv10.o mpegaudiodec.o pcm.o simple_idct.o
  8. ASM_OBJS=
  9. # currently using libac3 for ac3 decoding
  10. ifeq ($(CONFIG_AC3),yes)
  11. OBJS+= ac3dec.o \
  12. libac3/bit_allocate.o libac3/bitstream.o libac3/downmix.o \
  13. libac3/imdct.o libac3/parse.o
  14. endif
  15. # i386 mmx specific stuff
  16. ifeq ($(TARGET_MMX),yes)
  17. OBJS += i386/fdct_mmx.o i386/cputest.o \
  18. i386/dsputil_mmx.o i386/mpegvideo_mmx.o \
  19. i386/idct_mmx.o i386/motion_est_mmx.o \
  20. i386/simple_idct_mmx.o
  21. endif
  22. # armv4l specific stuff
  23. ifeq ($(TARGET_ARCH_ARMV4L),yes)
  24. ASM_OBJS += armv4l/jrevdct_arm.o
  25. OBJS += armv4l/dsputil_arm.o
  26. endif
  27. # sun mediaLib specific stuff
  28. # currently only works when libavcodec is used in mplayer
  29. ifeq ($(HAVE_MLIB),yes)
  30. OBJS += mlib/dsputil_mlib.o
  31. CFLAGS += $(MLIB_INC)
  32. endif
  33. SRCS = $(OBJS:.o=.c) $(ASM_OBJS:.o=.s)
  34. LIB= libavcodec.a
  35. ifeq ($(BUILD_SHARED),yes)
  36. SLIB= libffmpeg-$(VERSION).so
  37. endif
  38. TESTS= imgresample-test dct-test motion-test
  39. all: $(LIB) $(SLIB)
  40. tests: apiexample cpuid_test $(TESTS)
  41. $(LIB): $(OBJS) $(ASM_OBJS)
  42. rm -f $@
  43. $(AR) rcs $@ $(OBJS) $(ASM_OBJS)
  44. $(SLIB): $(OBJS) $(ASM_OBJS)
  45. rm -f $@
  46. $(CC) -shared -o $@ $(OBJS) $(ASM_OBJS)
  47. ln -sf $@ libffmpeg.so
  48. dsputil.o: dsputil.c dsputil.h
  49. %.o: %.c
  50. $(CC) $(CFLAGS) -c -o $@ $<
  51. %.o: %.S
  52. $(CC) $(CFLAGS) -c -o $@ $<
  53. # depend only used by mplayer now
  54. dep: depend
  55. depend:
  56. $(CC) -MM $(CFLAGS) $(SRCS) 1>.depend
  57. clean:
  58. rm -f *.o *~ $(LIB) $(SLIB) *.so i386/*.o i386/*~ \
  59. armv4l/*.o armv4l/*~ \
  60. mlib/*.o mlib/*~ \
  61. libac3/*.o libac3/*~ \
  62. apiexample $(TESTS)
  63. distclean: clean
  64. rm -f Makefile.bak .depend
  65. # api example program
  66. apiexample: apiexample.c $(LIB)
  67. $(CC) $(CFLAGS) -o $@ $< $(LIB) -lm
  68. # cpuid test
  69. cpuid_test: i386/cputest.c
  70. $(CC) $(CFLAGS) -D__TEST__ -o $@ $<
  71. # testing progs
  72. imgresample-test: imgresample.c
  73. $(CC) $(CFLAGS) -DTEST -o $@ $^
  74. dct-test: dct-test.o jfdctfst.o i386/fdct_mmx.o \
  75. fdctref.o jrevdct.o i386/idct_mmx.o
  76. $(CC) -o $@ $^
  77. motion-test: motion_test.o $(LIB)
  78. $(CC) -o $@ $^
  79. install: all
  80. # install -m 644 $(LIB) $(prefix)/lib
  81. ifeq ($(BUILD_SHARED),yes)
  82. install -s -m 755 $(SLIB) $(prefix)/lib
  83. ln -sf $(prefix)/lib/$(SLIB) $(prefix)/lib/libffmpeg.so
  84. ldconfig
  85. mkdir -p $(prefix)/include/libffmpeg
  86. install -m 644 avcodec.h $(prefix)/include/libffmpeg/avcodec.h
  87. install -m 644 common.h $(prefix)/include/libffmpeg/common.h
  88. endif
  89. #
  90. # include dependency files if they exist
  91. #
  92. ifneq ($(wildcard .depend),)
  93. include .depend
  94. endif