Makefile.am 673 B

12345678910111213141516171819202122232425262728293031
  1. ## Process this file with automake to produce Makefile.in
  2. AUTOMAKE_OPTIONS = foreign 1.6 dist-zip
  3. SUBDIRS = src include doc
  4. m4datadir = $(datadir)/aclocal
  5. m4data_DATA = ogg.m4
  6. pkgconfigdir = $(libdir)/pkgconfig
  7. pkgconfig_DATA = ogg.pc
  8. EXTRA_DIST = README AUTHORS CHANGES COPYING \
  9. libogg.spec libogg.spec.in \
  10. ogg.m4 ogg.pc.in ogg-uninstalled.pc.in \
  11. macos macosx win32
  12. dist-hook:
  13. for item in $(EXTRA_DIST); do \
  14. if test -d $$item; then \
  15. echo -n "cleaning dir $$item for distribution..."; \
  16. rm -rf `find $(distdir)/$$item -name .svn`; \
  17. echo "OK"; \
  18. fi; \
  19. done
  20. debug:
  21. $(MAKE) all CFLAGS="@DEBUG@"
  22. profile:
  23. $(MAKE) all CFLAGS="@PROFILE@"