Makefile.am 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. ## Process this file with automake to produce Makefile.in
  2. AUTOMAKE_OPTIONS = foreign
  3. INCLUDES = -I../lib -I$(top_srcdir)/include @OGG_CFLAGS@
  4. EXTRA_PROGRAMS = lspvqtrain genericvqtrain residuevqtrain vqbuild\
  5. vqcascade vqmetrics latticebuild latticepare latticehint\
  6. latticetune huffbuild residuesplit distribution
  7. CLEANFILES = $(EXTRA_PROGRAMS)
  8. LDFLAGS = -static
  9. LDADD = ../lib/libvorbis.la
  10. lspvqtrain_SOURCES = lspdata.c train.c vqgen.c bookutil.c\
  11. vqgen.h bookutil.h vqext.h
  12. genericvqtrain_SOURCES = genericdata.c train.c vqgen.c bookutil.c\
  13. vqgen.h bookutil.h vqext.h
  14. residuevqtrain_SOURCES = residuedata.c train.c vqgen.c bookutil.c\
  15. vqgen.h bookutil.h vqext.h
  16. vqbuild_SOURCES = build.c vqgen.c bookutil.c vqsplit.c\
  17. vqgen.h bookutil.h vqext.h
  18. vqcascade_SOURCES = run.c cascade.c vqgen.c bookutil.c\
  19. vqgen.h bookutil.h
  20. vqmetrics_SOURCES = run.c metrics.c vqgen.c bookutil.c\
  21. vqgen.h bookutil.h
  22. latticebuild_SOURCES = latticebuild.c vqgen.c bookutil.c\
  23. vqgen.h bookutil.h
  24. latticepare_SOURCES = latticepare.c vqgen.c bookutil.c vqsplit.c\
  25. vqgen.h bookutil.h
  26. latticehint_SOURCES = latticehint.c bookutil.c\
  27. bookutil.h
  28. latticetune_SOURCES = latticetune.c vqgen.c bookutil.c\
  29. vqgen.h bookutil.h
  30. huffbuild_SOURCES = huffbuild.c vqgen.c bookutil.c\
  31. vqgen.h bookutil.h
  32. residuesplit_SOURCES = residuesplit.c vqgen.c bookutil.c\
  33. vqgen.h bookutil.h
  34. distribution_SOURCES = distribution.c bookutil.c\
  35. bookutil.h
  36. EXTRA_DIST = residue_entropy auxpartition.pl
  37. debugvq:
  38. $(MAKE) vq CFLAGS="@DEBUG@"
  39. profilevq:
  40. $(MAKE) vq CFLAGS="@PROFILE@"
  41. vq:
  42. $(MAKE) $(EXTRA_PROGRAMS)