Makefile.am 1002 B

1234567891011121314151617181920212223242526272829303132333435
  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. EXTRA_DIST = residue_entropy auxpartition.pl
  21. debugvq:
  22. $(MAKE) vq CFLAGS="@DEBUG@"
  23. profilevq:
  24. $(MAKE) vq CFLAGS="@PROFILE@"
  25. vq:
  26. $(MAKE) $(EXTRA_PROGRAMS)