Makefile.am 929 B

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