Makefile.am 911 B

12345678910111213141516171819202122232425262728293031323334353637
  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 = latticebuild latticepare latticehint\
  5. latticetune huffbuild distribution
  6. CLEANFILES = $(EXTRA_PROGRAMS)
  7. LDFLAGS = -static
  8. LDADD = ../lib/libvorbis.la
  9. latticebuild_SOURCES = latticebuild.c vqgen.c bookutil.c\
  10. vqgen.h bookutil.h
  11. latticepare_SOURCES = latticepare.c vqgen.c bookutil.c vqsplit.c\
  12. vqgen.h bookutil.h
  13. latticehint_SOURCES = latticehint.c bookutil.c\
  14. bookutil.h
  15. latticetune_SOURCES = latticetune.c vqgen.c bookutil.c\
  16. vqgen.h bookutil.h
  17. huffbuild_SOURCES = huffbuild.c vqgen.c bookutil.c\
  18. vqgen.h bookutil.h
  19. distribution_SOURCES = distribution.c bookutil.c\
  20. bookutil.h
  21. EXTRA_DIST = residue_entropy auxpartition.pl
  22. debugvq:
  23. $(MAKE) vq CFLAGS="@DEBUG@"
  24. profilevq:
  25. $(MAKE) vq CFLAGS="@PROFILE@"
  26. vq:
  27. $(MAKE) $(EXTRA_PROGRAMS)