Makefile.am 718 B

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