Makefile.am 1.4 KB

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