Makefile.am 621 B

12345678910111213141516171819202122
  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
  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 vorbisfile.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 @LIB_CURRENT@:@LIB_REVISION@:@LIB_AGE@
  12. debug:
  13. $(MAKE) all CFLAGS="@DEBUG@"
  14. profile:
  15. $(MAKE) all CFLAGS="@PROFILE@"