makefile.am
来自「Motion JPEG编解码器源代码」· AM 代码 · 共 119 行
AM
119 行
## Automake Makefile template for mpeg2enc++ library # and mpeg2enc command line wrapper.#bin_PROGRAMS = mpeg2enc mpeg2encpp_MMXSSE_INLINE = \ fdct_x86.c \ fdct_mmx.c \ idct_mmx.c \ quant_mmx.c \ predict_mmx.c \ predcomp_mmx.c \ predcomp_mmxe.c \ predict_x86.c \ quantize_x86.c \ transfrm_x86.cEXTRA_DIST = NOTESMAINTAINERCLEANFILES = Makefile.inINCLUDES = -I$(top_srcdir) -I$(top_srcdir)/utilsLIBMJPEGUTILS = $(top_builddir)/utils/libmjpegutils.lalib_LTLIBRARIES = libmpeg2encpp.laif HAVE_ASM_MMXSIMD_INLINE = $(mpeg2encpp_MMXSSE_INLINE)endif # HAVE_ASM_MMX# Reference implementations of lowlevel routines that may have Architecture# dependent (usually SIMD) implementationsmpeg2enc_REF = \ fdct.c \ idct.c \ predict_ref.c \ quantize_ref.c \ transfrm_ref.cmpeg2enc_noinst_header_REF = \ transfrm_ref.hmpeg2enc_inst_header_REF = \ predict_ref.hmpeg2enc_SOURCES = mpeg2enc.cclibmpeg2encpp_la_SOURCES = \ conform.cc \ elemstrmwriter.cc \ encoderparams.cc \ macroblock.cc \ motionest.cc \ mpeg2coder.cc \ mpeg2encoptions.cc \ mpeg2encoder.cc \ picture.cc \ picturereader.cc \ predict.cc \ putpic.cc \ streamstate.cc \ seqencoder.cc \ quantize.cc \ ratectl.cc \ pass1ratectl.cc \ stats.cc \ synchrolib.cc \ tables.c \ transfrm.cc \ writepic.cc \ $(mpeg2enc_REF) \ $(SIMD_INLINE)noinst_HEADERS = channel.hh mpeg2syntaxcodes.h quantize_precomp.h simd.h \ tables.h $(mpeg2enc_noinst_header_REF)libmpeg2encpp_includedir = $(pkgincludedir)/mpeg2enclibmpeg2encpp_include_HEADERS = \ elemstrmwriter.hh \ encoderparams.hh \ encodertypes.h \ macroblock.hh \ mpeg2coder.hh \ mpeg2encoder.hh \ mpeg2encoptions.hh \ mpeg2encparams.h \ picture.hh \ picturereader.hh \ quantize.hh \ quantize_ref.h \ ratectl.hh \ streamstate.h \ seqencoder.hh \ synchrolib.h \ syntaxconsts.h \ $(mpeg2enc_inst_header_REF)libmpeg2encpp_la_LDFLAGS = \ -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) \ -release $(LT_RELEASE)libmpeg2encpp_la_DEPENDENCIES = $(LIBMJPEGUTILS)libmpeg2encpp_la_LIBADD = $(LIBMJPEGUTILS)mpeg2enc_DEPENDENCIES = \ $(LIBMJPEGUTILS) \ $(top_builddir)/mpeg2enc/libmpeg2encpp.lampeg2enc_LDADD = \ $(top_builddir)/mpeg2enc/libmpeg2encpp.la \ $(LIBMJPEGUTILS) \ @PTHREAD_LIBS@ @LIBGETOPT_LIB@ $(LIBM_LIBS)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?