INCLUDES = -I$(top_srcdir)/include -I$(top_srcdir)/lib -I$(top_srcdir)/lib/dec -I$(top_srcdir)/lib/enc AM_CFLAGS = $(OGG_CFLAGS) EXTRA_DIST = \ enc/x86_32/dct_decode_mmx.c \ enc/x86_32/dsp_mmx.c \ enc/x86_32/dsp_mmxext.c \ enc/x86_32/recon_mmx.c \ enc/x86_32/fdct_mmx.c \ enc/x86_32/idct_mmx.c \ enc/x86_64/dsp_mmx.c \ enc/x86_64/dsp_mmxext.c \ enc/x86_64/recon_mmx.c \ enc/x86_64/fdct_mmx.c \ enc/x86_64/idct_mmx.c \ enc/x86_32_vs/dsp_mmx.c \ enc/x86_32_vs/fdct_mmx.c \ enc/x86_32_vs/recon_mmx.c \ enc/dct_encode.c \ enc/encode.c \ enc/encoder_toplevel.c lib_LTLIBRARIES = libtheoradec.la libtheoraenc.la libtheora.la if THEORA_DISABLE_ENCODE encoder_sources = \ enc/encapiwrapper.c \ enc/encoder_disabled.c else encoder_sources = \ enc/dct_encode.c \ enc/encode.c \ enc/encoder_huffman.c \ enc/encoder_idct.c \ enc/encoder_toplevel.c \ enc/encoder_quant.c \ enc/encapiwrapper.c \ enc/blockmap.c \ enc/dct.c \ enc/dct_decode.c \ enc/frarray.c \ enc/frinit.c \ enc/mcomp.c \ enc/misc_common.c \ enc/pb.c \ enc/pp.c \ enc/reconstruct.c \ enc/scan.c \ enc/dsp.c if CPU_x86_64 enc_arch_dir = enc/x86_64 encoder_arch_sources= \ $(enc_arch_dir)/dct_decode_mmx.c \ $(enc_arch_dir)/dsp_mmx.c \ $(enc_arch_dir)/dsp_mmxext.c \ $(enc_arch_dir)/recon_mmx.c \ $(enc_arch_dir)/idct_mmx.c \ $(enc_arch_dir)/fdct_mmx.c else if CPU_x86_32 enc_arch_dir = enc/x86_32 encoder_arch_sources= \ $(enc_arch_dir)/dct_decode_mmx.c \ $(enc_arch_dir)/dsp_mmx.c \ $(enc_arch_dir)/dsp_mmxext.c \ $(enc_arch_dir)/recon_mmx.c \ $(enc_arch_dir)/idct_mmx.c \ $(enc_arch_dir)/fdct_mmx.c endif endif endif decoder_sources = \ dec/apiwrapper.c \ dec/bitwise.c \ dec/decapiwrapper.c \ dec/decinfo.c \ dec/decode.c \ dec/dequant.c \ dec/fragment.c \ dec/huffdec.c \ dec/idct.c \ dec/info.c \ dec/internal.c \ dec/quant.c \ dec/state.c decoder_x86_sources = \ dec/x86/mmxidct.c \ dec/x86/mmxfrag.c \ dec/x86/mmxstate.c \ dec/x86/x86state.c if CPU_x86_64 decoder_arch_sources = $(decoder_x86_sources) else if CPU_x86_32 decoder_arch_sources = $(decoder_x86_sources) else decoder_arch_sources = endif endif noinst_HEADERS = \ cpu.h \ internal.h \ enc/block_inline.h \ enc/codec_internal.h \ enc/encoder_lookup.h \ enc/encoder_huffman.h \ enc/hufftables.h \ enc/pp.h \ enc/quant_lookup.h \ enc/toplevel_lookup.h \ enc/dsp.h \ dec/apiwrapper.h \ dec/bitwise.h \ dec/dct.h \ dec/decint.h \ dec/dequant.h \ dec/enquant.h \ dec/huffdec.h \ dec/huffman.h \ dec/idct.h \ dec/ocintrin.h \ dec/quant.h \ dec/x86/x86int.h libtheoradec_la_SOURCES = \ cpu.c \ $(decoder_arch_sources) \ $(decoder_sources) \ Version_script-dec libtheoradec_la_LDFLAGS = \ -version-info @THDEC_LIB_CURRENT@:@THDEC_LIB_REVISION@:@THDEC_LIB_AGE@ \ @THEORADEC_LDFLAGS@ libtheoraenc_la_SOURCES = \ cpu.c \ $(encoder_arch_sources) \ $(encoder_sources) \ Version_script-enc libtheoraenc_la_LDFLAGS = \ -version-info @THENC_LIB_CURRENT@:@THENC_LIB_REVISION@:@THENC_LIB_AGE@ \ @THEORAENC_LDFLAGS@ $(OGG_LIBS) libtheora_la_SOURCES = \ cpu.c \ $(decoder_arch_sources) \ $(decoder_sources) \ $(encoder_arch_sources) \ $(encoder_sources) \ Version_script libtheora_la_LDFLAGS = \ -version-info @TH_LIB_CURRENT@:@TH_LIB_REVISION@:@TH_LIB_AGE@ \ @THEORA_LDFLAGS@ $(OGG_LIBS) debug: $(MAKE) all CFLAGS="@DEBUG@" profile: $(MAKE) all CFLAGS="@PROFILE@"