Makefile.am 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. ## Process this file with automake to produce Makefile.in
  2. INCLUDES = -I../lib -I$(top_srcdir)/include @OGG_CFLAGS@
  3. EXTRA_PROGRAMS = latticebuild latticepare latticehint\
  4. latticetune huffbuild distribution
  5. CLEANFILES = $(EXTRA_PROGRAMS)
  6. AM_LDFLAGS = -static
  7. LDADD = ../lib/libvorbis.la
  8. latticebuild_SOURCES = latticebuild.c vqgen.c bookutil.c\
  9. vqgen.h bookutil.h localcodebook.h
  10. latticepare_SOURCES = latticepare.c vqgen.c bookutil.c vqsplit.c\
  11. vqgen.h vqsplit.h bookutil.h localcodebook.h
  12. latticehint_SOURCES = latticehint.c bookutil.c\
  13. vqsplit.h bookutil.h localcodebook.h
  14. latticetune_SOURCES = latticetune.c vqgen.c bookutil.c\
  15. vqgen.h bookutil.h localcodebook.h
  16. huffbuild_SOURCES = huffbuild.c vqgen.c bookutil.c\
  17. vqgen.h bookutil.h localcodebook.h
  18. distribution_SOURCES = distribution.c bookutil.c\
  19. bookutil.h localcodebook.h
  20. vqs_files = 16.vqs 16u.vqs 44c-1.vqs 44c0.vqs 44c1.vqs 44c2.vqs \
  21. 44c3.vqs 44c4.vqs 44c5.vqs 44c6.vqs 44c7.vqs 44c8.vqs 44c9.vqs \
  22. 44u0.vqs 44u1.vqs 44u2.vqs 44u3.vqs 44u4.vqs 44u5.vqs 44u6.vqs \
  23. 44u7.vqs 44u8.vqs 44u9.vqs 8.vqs 8u.vqs floor_11.vqs floor_22.vqs \
  24. floor_44.vqs
  25. EXTRA_DIST = $(vqs_files) build.c cascade.c genericdata.c lspdata.c \
  26. make_floor_books.pl make_residue_books.pl metrics.c residue_entropy \
  27. residuedata.c residuesplit.c run.c train.c vqext.h auxpartition.pl
  28. debugvq:
  29. $(MAKE) vq CFLAGS="@DEBUG@"
  30. profilevq:
  31. $(MAKE) vq CFLAGS="@PROFILE@"
  32. vq:
  33. $(MAKE) $(EXTRA_PROGRAMS)