Makefile.am 701 B

1234567891011121314151617181920212223242526272829303132
  1. ## Process this file with automake to produce Makefile.in
  2. AUTOMAKE_OPTIONS = foreign 1.11 dist-zip dist-xz
  3. ACLOCAL_AMFLAGS=-I m4
  4. if THEORA_ENABLE_EXAMPLES
  5. EXAMPLES_DIR = examples
  6. else
  7. EXAMPLES_DIR =
  8. endif
  9. SUBDIRS = lib include doc tests m4 $(EXAMPLES_DIR)
  10. EXTRA_DIST = \
  11. README CHANGES COPYING LICENSE \
  12. autogen.sh win32 macosx symbian SConstruct \
  13. libtheora.spec libtheora.spec.in \
  14. theora-uninstalled.pc.in
  15. pkgconfigdir = $(libdir)/pkgconfig
  16. pkgconfig_DATA = theora.pc theoradec.pc theoraenc.pc
  17. # Remove the .svn folders included in the tarball
  18. dist-hook:
  19. find $(distdir) -type d -name '.svn' | xargs rm -rf
  20. debug:
  21. $(MAKE) all CFLAGS="@DEBUG@"
  22. profile:
  23. $(MAKE) all CFLAGS="@PROFILE@"