makefile.am
上传用户:wstnjxml
上传日期:2014-04-03
资源大小:7248k
文件大小:1k
源码类别:

Windows CE

开发平台:

C/C++

  1. AUTOMAKE_OPTIONS = foreign
  2. INCLUDES = -I./
  3. lib_LTLIBRARIES = libvorbisidec.la
  4. libvorbisidec_la_SOURCES = mdct.c block.c window.c 
  5.                         synthesis.c info.c 
  6.                         floor1.c floor0.c vorbisfile.c 
  7.                         res012.c mapping0.c registry.c codebook.c 
  8. sharedbook.c framing.c bitwise.c 
  9.                         codebook.h misc.h mdct_lookup.h
  10.                         os.h mdct.h ivorbisfile.h lsp_lookup.h
  11.                         registry.h window.h window_lookup.h
  12.                         codec_internal.h backends.h ogg.h 
  13. asm_arm.h ivorbiscodec.h
  14. libvorbisidec_la_LDFLAGS = -version-info @V_LIB_CURRENT@:@V_LIB_REVISION@:@V_LIB_AGE@
  15. EXTRA_PROGRAMS = ivorbisfile_example
  16. CLEANFILES = $(EXTRA_PROGRAMS) $(lib_LTLIBRARIES)
  17. ivorbisfile_example_SOURCES = ivorbisfile_example.c
  18. ivorbisfile_example_LDFLAGS = -static 
  19. ivorbisfile_example_LDADD = libvorbisidec.la
  20. includedir = $(prefix)/include/tremor
  21. include_HEADERS = ivorbiscodec.h ivorbisfile.h ogg.h os_types.h config_types.h
  22. example:
  23. -ln -fs . vorbis
  24. $(MAKE) ivorbisfile_example
  25. debug:
  26. $(MAKE) all CFLAGS="@DEBUG@" LDFLAGS="-lefence"
  27. profile:
  28. $(MAKE) all CFLAGS="@PROFILE@"