Makefile
上传用户:hjq518
上传日期:2021-12-09
资源大小:5084k
文件大小:6k
源码类别:

Audio

开发平台:

Visual C++

  1. # Makefile
  2. include config.mak
  3. all: default
  4. SRCS = common/mc.c common/predict.c common/pixel.c common/macroblock.c 
  5.        common/frame.c common/dct.c common/cpu.c common/cabac.c 
  6.        common/common.c common/mdate.c common/set.c 
  7.        common/quant.c common/vlc.c 
  8.        encoder/analyse.c encoder/me.c encoder/ratecontrol.c 
  9.        encoder/set.c encoder/macroblock.c encoder/cabac.c 
  10.        encoder/cavlc.c encoder/encoder.c
  11. SRCCLI = x264.c matroska.c muxers.c
  12. # Visualization sources
  13. ifeq ($(VIS),yes)
  14. SRCS   += common/visualize.c common/display-x11.c
  15. endif
  16. # MMX/SSE optims
  17. ifneq ($(AS),)
  18. X86SRC0 = cabac-a.asm dct-a.asm deblock-a.asm mc-a.asm mc-a2.asm 
  19.           pixel-a.asm predict-a.asm quant-a.asm sad-a.asm 
  20.           cpu-32.asm dct-32.asm
  21. X86SRC = $(X86SRC0:%=common/x86/%)
  22. ifeq ($(ARCH),X86)
  23. ARCH_X86 = yes
  24. ASMSRC   = $(X86SRC) common/x86/pixel-32.asm
  25. endif
  26. ifeq ($(ARCH),X86_64)
  27. ARCH_X86 = yes
  28. ASMSRC   = $(X86SRC:-32.asm=-64.asm)
  29. ASFLAGS += -DARCH_X86_64
  30. endif
  31. ifdef ARCH_X86
  32. ASFLAGS += -Icommon/x86/
  33. SRCS   += common/x86/mc-c.c common/x86/predict-c.c
  34. OBJASM  = $(ASMSRC:%.asm=%.o)
  35. $(OBJASM): common/x86/x86inc.asm common/x86/x86util.asm
  36. checkasm: tools/checkasm-a.o
  37. endif
  38. endif
  39. # AltiVec optims
  40. ifeq ($(ARCH),PPC)
  41. ALTIVECSRC += common/ppc/mc.c common/ppc/pixel.c common/ppc/dct.c 
  42.               common/ppc/quant.c common/ppc/deblock.c 
  43.               common/ppc/predict.c
  44. SRCS += $(ALTIVECSRC)
  45. $(ALTIVECSRC:%.c=%.o): CFLAGS += $(ALTIVECFLAGS)
  46. endif
  47. # VIS optims
  48. ifeq ($(ARCH),UltraSparc)
  49. ASMSRC += common/sparc/pixel.asm
  50. OBJASM  = $(ASMSRC:%.asm=%.o)
  51. endif
  52. ifneq ($(HAVE_GETOPT_LONG),1)
  53. SRCS += extras/getopt.c
  54. endif
  55. OBJS = $(SRCS:%.c=%.o)
  56. OBJCLI = $(SRCCLI:%.c=%.o)
  57. DEP  = depend
  58. .PHONY: all default fprofiled clean distclean install install-gtk uninstall dox test testclean
  59. default: $(DEP) x264$(EXE)
  60. libx264.a: .depend $(OBJS) $(OBJASM)
  61. ar rc libx264.a $(OBJS) $(OBJASM)
  62. ranlib libx264.a
  63. $(SONAME): .depend $(OBJS) $(OBJASM)
  64. $(CC) -shared -o $@ $(OBJS) $(OBJASM) $(SOFLAGS) $(LDFLAGS)
  65. x264$(EXE): $(OBJCLI) libx264.a 
  66. $(CC) -o $@ $+ $(LDFLAGS)
  67. libx264gtk.a: muxers.o libx264.a
  68. $(MAKE) -C gtk
  69. checkasm: tools/checkasm.o libx264.a
  70. $(CC) -o $@ $+ $(LDFLAGS)
  71. %.o: %.asm
  72. $(AS) $(ASFLAGS) -o $@ $<
  73. # delete local/anonymous symbols, so they don't show up in oprofile
  74. -@ strip -x $@
  75. .depend: config.mak
  76. rm -f .depend
  77. # Hacky - because gcc 2.9x doesn't have -MT
  78. $(foreach SRC, $(SRCS) $(SRCCLI), ( $(ECHON) "`dirname $(SRC)`/" && $(CC) $(CFLAGS) $(ALTIVECFLAGS) $(SRC) -MM -g0 ) 1>> .depend;)
  79. config.mak: $(wildcard .svn/entries */.svn/entries */*/.svn/entries)
  80. ./configure $(CONFIGURE_ARGS)
  81. depend: .depend
  82. ifneq ($(wildcard .depend),)
  83. include .depend
  84. endif
  85. SRC2 = $(SRCS) $(SRCCLI)
  86. # These should cover most of the important codepaths
  87. OPT0 = --crf 30 -b1 -m1 -r1 --me dia --no-cabac --pre-scenecut --direct temporal --no-ssim --no-psnr
  88. OPT1 = --crf 16 -b2 -m3 -r3 --me hex -8 --direct spatial --no-dct-decimate
  89. OPT2 = --crf 26 -b2 -m5 -r2 --me hex -8 -w --cqm jvt --nr 100
  90. OPT3 = --crf 18 -b3 -m7 -r5 --me umh -8 -t1 -A all --mixed-refs --b-rdo -w --b-pyramid --direct auto --bime --no-fast-pskip
  91. OPT4 = --crf 22 -b3 -m6 -r4 --me esa -8 -t2 -A all --mixed-refs --b-rdo --bime
  92. OPT5 = --frames 50 --crf 24 -b3 -m7 -r3 --me tesa -8 -t1 --mixed-refs --b-rdo --bime
  93. OPT6 = --frames 50 -q0 -m6 -r2 --me hex -Aall
  94. OPT7 = --frames 50 -q0 -m2 -r1 --me hex --no-cabac
  95. ifeq (,$(VIDS))
  96. fprofiled:
  97. @echo 'usage: make fprofiled VIDS="infile1 infile2 ..."'
  98. @echo 'where infiles are anything that x264 understands,'
  99. @echo 'i.e. YUV with resolution in the filename, y4m, or avisynth.'
  100. else
  101. fprofiled:
  102. $(MAKE) clean
  103. mv config.mak config.mak2
  104. sed -e 's/CFLAGS.*/& -fprofile-generate/; s/LDFLAGS.*/& -fprofile-generate/' config.mak2 > config.mak
  105. $(MAKE) x264$(EXE)
  106. $(foreach V, $(VIDS), $(foreach I, 0 1 2 3 4 5 6 7, ./x264$(EXE) $(OPT$I) $(V) --progress -o $(DEVNULL) ;))
  107. rm -f $(SRC2:%.c=%.o)
  108. sed -e 's/CFLAGS.*/& -fprofile-use/; s/LDFLAGS.*/& -fprofile-use/' config.mak2 > config.mak
  109. $(MAKE)
  110. rm -f $(SRC2:%.c=%.gcda) $(SRC2:%.c=%.gcno)
  111. mv config.mak2 config.mak
  112. endif
  113. clean:
  114. rm -f $(OBJS) $(OBJASM) $(OBJCLI) $(SONAME) *.a x264 x264.exe .depend TAGS
  115. rm -f checkasm checkasm.exe tools/checkasm.o
  116. rm -f tools/avc2avi tools/avc2avi.exe tools/avc2avi.o
  117. rm -f $(SRC2:%.c=%.gcda) $(SRC2:%.c=%.gcno)
  118. - sed -e 's/ *-fprofile-(generate|use)//g' config.mak > config.mak2 && mv config.mak2 config.mak
  119. $(MAKE) -C gtk clean
  120. distclean: clean
  121. rm -f config.mak config.h x264.pc
  122. rm -rf test/
  123. $(MAKE) -C gtk distclean
  124. install: x264$(EXE) $(SONAME)
  125. install -d $(DESTDIR)$(bindir) $(DESTDIR)$(includedir)
  126. install -d $(DESTDIR)$(libdir) $(DESTDIR)$(libdir)/pkgconfig
  127. install -m 644 x264.h $(DESTDIR)$(includedir)
  128. install -m 644 libx264.a $(DESTDIR)$(libdir)
  129. install -m 644 x264.pc $(DESTDIR)$(libdir)/pkgconfig
  130. install x264$(EXE) $(DESTDIR)$(bindir)
  131. ranlib $(DESTDIR)$(libdir)/libx264.a
  132. ifeq ($(SYS),MINGW)
  133. $(if $(SONAME), install -m 755 $(SONAME) $(DESTDIR)$(bindir))
  134. else
  135. $(if $(SONAME), ln -sf $(SONAME) $(DESTDIR)$(libdir)/libx264.$(SOSUFFIX))
  136. $(if $(SONAME), install -m 755 $(SONAME) $(DESTDIR)$(libdir))
  137. endif
  138. $(if $(IMPLIBNAME), install -m 644 $(IMPLIBNAME) $(DESTDIR)$(libdir))
  139. install-gtk: libx264gtk.a
  140. $(MAKE) -C gtk install
  141. uninstall:
  142. rm -f $(DESTDIR)$(includedir)/x264.h $(DESTDIR)$(libdir)/libx264.a
  143. rm -f $(DESTDIR)$(bindir)/x264 $(DESTDIR)$(libdir)/pkgconfig/x264.pc
  144. $(if $(SONAME), rm -f $(DESTDIR)$(libdir)/$(SONAME) $(DESTDIR)$(libdir)/libx264.$(SOSUFFIX))
  145. $(MAKE) -C gtk uninstall
  146. etags: TAGS
  147. TAGS:
  148. etags $(SRCS)
  149. dox:
  150. doxygen Doxyfile
  151. ifeq (,$(VIDS))
  152. test:
  153. @echo 'usage: make test VIDS="infile1 infile2 ..."'
  154. @echo 'where infiles are anything that x264 understands,'
  155. @echo 'i.e. YUV with resolution in the filename, y4m, or avisynth.'
  156. else
  157. test:
  158. perl tools/regression-test.pl --version=head,current --options='$(OPT0)' --options='$(OPT1)' --options='$(OPT2)' $(VIDS:%=--input=%)
  159. endif
  160. testclean:
  161. rm -f test/*.log test/*.264
  162. $(foreach DIR, $(wildcard test/x264-r*/), cd $(DIR) ; make clean ; cd ../.. ;)