Makefile.am 952 B

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