Makefile.am 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. AUTOMAKE_OPTIONS = foreign
  2. INCLUDES = -I./ @OGG_CFLAGS@
  3. pkgconfigdir = $(libdir)/pkgconfig
  4. pkgconfig_DATA = vorbisidec.pc
  5. lib_LTLIBRARIES = libvorbisidec.la
  6. libvorbisidec_la_SOURCES = mdct.c block.c window.c \
  7. synthesis.c info.c \
  8. floor1.c floor0.c vorbisfile.c \
  9. res012.c mapping0.c registry.c codebook.c \
  10. sharedbook.c \
  11. codebook.h misc.h mdct_lookup.h\
  12. os.h mdct.h block.h ivorbisfile.h lsp_lookup.h\
  13. registry.h window.h window_lookup.h\
  14. codec_internal.h backends.h \
  15. asm_arm.h ivorbiscodec.h
  16. libvorbisidec_la_LDFLAGS = -version-info @V_LIB_CURRENT@:@V_LIB_REVISION@:@V_LIB_AGE@
  17. libvorbisidec_la_LIBADD = @OGG_LIBS@
  18. EXTRA_PROGRAMS = ivorbisfile_example iseeking_example
  19. CLEANFILES = $(EXTRA_PROGRAMS) $(lib_LTLIBRARIES)
  20. ivorbisfile_example_SOURCES = ivorbisfile_example.c
  21. ivorbisfile_example_LDFLAGS = -static
  22. ivorbisfile_example_LDADD = libvorbisidec.la @OGG_LIBS@
  23. iseeking_example_SOURCES = iseeking_example.c
  24. iseeking_example_LDFLAGS = -static
  25. iseeking_example_LDADD = libvorbisidec.la @OGG_LIBS@
  26. includedir = $(prefix)/include/tremor
  27. include_HEADERS = ivorbiscodec.h ivorbisfile.h config_types.h
  28. EXTRA_DIST = vorbisidec.pc.in \
  29. $(srcdir)/doc/*.html $(srcdir)/win32/VS*/libtremor/*.vcproj
  30. example:
  31. -ln -fs . vorbis
  32. $(MAKE) ivorbisfile_example
  33. $(MAKE) iseeking_example
  34. debug:
  35. $(MAKE) all CFLAGS="@DEBUG@"
  36. profile:
  37. $(MAKE) all CFLAGS="@PROFILE@"