Makefile.am 854 B

1234567891011121314151617181920212223242526272829
  1. ## Process this file with automake to produce Makefile.in
  2. AUTOMAKE_OPTIONS = foreign 1.6 dist-zip dist-bzip2
  3. SUBDIRS = lib include doc examples tests m4
  4. # we include the whole debian/ dir in EXTRA_DIST because there's a problem
  5. # with autotools and HFS+ MacOSX file systems that caused debian/Makefile.am
  6. # to pick up on the lowercase changelog file and add ChangeLog to DIST_COMMON
  7. # because of it, breaking make dist. This works just as well.
  8. EXTRA_DIST = \
  9. COPYING autogen.sh win32 libtheora.spec libtheora.spec.in \
  10. theora-uninstalled.pc.in \
  11. debian
  12. pkgconfigdir = $(libdir)/pkgconfig
  13. pkgconfig_DATA = theora.pc
  14. dist-hook:
  15. rm -rf `find $(distdir)/debian -name .svn`
  16. rm -rf `find $(distdir)/debian -name "Makefile*"`
  17. rm -rf `find $(distdir)/win32 -name .svn`
  18. debug:
  19. $(MAKE) all CFLAGS="@DEBUG@"
  20. profile:
  21. $(MAKE) all CFLAGS="@PROFILE@"