Makefile.am 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. ## Process this file with automake to produce Makefile.in
  2. AUTOMAKE_OPTIONS = foreign
  3. SUBDIRS = modes books
  4. INCLUDES = -I$(top_srcdir)/include
  5. lib_LTLIBRARIES = libvorbis.la libvorbisfile.la libvorbisenc.la
  6. libvorbis_la_SOURCES = mdct.c smallft.c block.c envelope.c window.c lsp.c lpc.c\
  7. analysis.c synthesis.c psy.c info.c time0.c floor0.c\
  8. res0.c mapping0.c registry.c codebook.c sharedbook.c\
  9. iir.c lookup.c\
  10. envelope.h lpc.h lsp.h codebook.h misc.h psy.h\
  11. masking.h iir.h os.h mdct.h smallft.h\
  12. registry.h scales.h window.h lookup.h lookup_data.h\
  13. codec_internal.h backends.h
  14. libvorbis_la_LDFLAGS = -version-info @V_LIB_CURRENT@:@V_LIB_REVISION@:@V_LIB_AGE@
  15. libvorbisfile_la_SOURCES = vorbisfile.c
  16. libvorbisfile_la_LDFLAGS = -version-info @VF_LIB_CURRENT@:@VF_LIB_REVISION@:@VF_LIB_AGE@
  17. libvorbisenc_la_SOURCES = vorbisenc.c
  18. libvorbisenc_la_LDFLAGS = -version-info @VE_LIB_CURRENT@:@VE_LIB_REVISION@:@VE_LIB_AGE@
  19. EXTRA_DIST = barkmel.c tone.c psytune.c lookups.pl
  20. debug:
  21. $(MAKE) all CFLAGS="@DEBUG@"
  22. profile:
  23. $(MAKE) all CFLAGS="@PROFILE@"