Makefile.am 761 B

12345678910111213141516171819202122232425
  1. ## Process this file with automake to produce Makefile.in
  2. AUTOMAKE_OPTIONS = foreign
  3. INCLUDES = -I$(top_srcdir)/include
  4. lib_LTLIBRARIES = libvorbis.la libvorbisfile.la
  5. libvorbis_la_SOURCES = mdct.c smallft.c block.c envelope.c window.c lsp.c lpc.c\
  6. analysis.c synthesis.c psy.c info.c time0.c floor0.c\
  7. res0.c mapping0.c registry.c codebook.c sharedbook.c\
  8. iir.c\
  9. envelope.h lpc.h lsp.h bookinternal.h misc.h psy.h\
  10. masking.h sharedbook.h iir.h os.h
  11. libvorbis_la_LDFLAGS = -version-info @V_LIB_CURRENT@:@V_LIB_REVISION@:@V_LIB_AGE@
  12. libvorbisfile_la_SOURCES = vorbisfile.c
  13. libvorbisfile_la_LDFLAGS = -version-info @VF_LIB_CURRENT@:@VF_LIB_REVISION@:@VF_LIB_AGE@
  14. debug:
  15. $(MAKE) all CFLAGS="@DEBUG@"
  16. profile:
  17. $(MAKE) all CFLAGS="@PROFILE@"