Makefile.am 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. ## Process this file with automake to produce Makefile.in
  2. AUTOMAKE_OPTIONS = foreign
  3. SUBDIRS = modes books
  4. INCLUDES = -I$(top_srcdir)/include @OGG_CFLAGS@
  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 \
  7. lpc.c analysis.c synthesis.c psy.c info.c \
  8. floor1.c floor0.c\
  9. res0.c mapping0.c registry.c codebook.c sharedbook.c\
  10. lookup.c bitrate.c\
  11. envelope.h lpc.h lsp.h codebook.h misc.h psy.h\
  12. masking.h os.h mdct.h smallft.h highlevel.h\
  13. registry.h scales.h window.h lookup.h lookup_data.h\
  14. codec_internal.h backends.h bitrate.h
  15. libvorbis_la_LDFLAGS = -version-info @V_LIB_CURRENT@:@V_LIB_REVISION@:@V_LIB_AGE@
  16. libvorbisfile_la_SOURCES = vorbisfile.c
  17. libvorbisfile_la_LDFLAGS = -version-info @VF_LIB_CURRENT@:@VF_LIB_REVISION@:@VF_LIB_AGE@
  18. libvorbisenc_la_SOURCES = vorbisenc.c
  19. libvorbisenc_la_LDFLAGS = -version-info @VE_LIB_CURRENT@:@VE_LIB_REVISION@:@VE_LIB_AGE@
  20. EXTRA_PROGRAMS = barkmel tone psytune
  21. CLEANFILES = $(EXTRA_PROGRAMS)
  22. barkmel_SOURCES = barkmel.c
  23. tone_SOURCES = tone.c
  24. psytune_SOURCES = psytune.c
  25. psytune_LDFLAGS = -static
  26. psytune_LDADD = libvorbis.la
  27. EXTRA_DIST = lookups.pl
  28. debug:
  29. $(MAKE) all CFLAGS="@DEBUG@"
  30. profile:
  31. $(MAKE) all CFLAGS="@PROFILE@"