Makefile.am 1010 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. ## Process this file with automake to produce Makefile.in
  2. #AUTOMAKE_OPTIONS = 1.7 foreign dist-zip dist-bzip2
  3. AUTOMAKE_OPTIONS = foreign 1.11 dist-zip dist-xz
  4. SUBDIRS = m4 include vq lib test doc
  5. if BUILD_EXAMPLES
  6. SUBDIRS += examples
  7. endif
  8. m4datadir = $(datadir)/aclocal
  9. m4data_DATA = vorbis.m4
  10. pkgconfigdir = $(libdir)/pkgconfig
  11. pkgconfig_DATA = vorbis.pc vorbisenc.pc vorbisfile.pc
  12. EXTRA_DIST = \
  13. CHANGES COPYING \
  14. todo.txt autogen.sh \
  15. libvorbis.spec libvorbis.spec.in \
  16. vorbis.m4 \
  17. vorbis.pc.in vorbisenc.pc.in vorbisfile.pc.in \
  18. vorbis-uninstalled.pc.in \
  19. vorbisenc-uninstalled.pc.in \
  20. vorbisfile-uninstalled.pc.in \
  21. symbian \
  22. macos macosx win32
  23. DISTCHECK_CONFIGURE_FLAGS = --enable-docs
  24. dist-hook:
  25. for item in $(EXTRA_DIST); do \
  26. if test -d $$item; then \
  27. echo -n "cleaning $$item dir for distribution..."; \
  28. rm -rf `find $(distdir)/$$item -name .svn`; \
  29. echo "OK"; \
  30. fi; \
  31. done
  32. debug:
  33. $(MAKE) all CFLAGS="@DEBUG@"
  34. profile:
  35. $(MAKE) all CFLAGS="@PROFILE@"