Makefile.am 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. ## Process this file with automake to produce Makefile.in
  2. apidocdir = $(htmldir)/libogg
  3. dist_apidoc_DATA = bitpacking.html datastructures.html decoding.html encoding.html\
  4. general.html index.html ogg_iovec_t.html ogg_packet.html ogg_packet_clear.html\
  5. ogg_page.html ogg_page_bos.html ogg_page_checksum_set.html\
  6. ogg_page_continued.html ogg_page_eos.html ogg_page_granulepos.html\
  7. ogg_page_packets.html ogg_page_pageno.html ogg_page_serialno.html\
  8. ogg_page_version.html ogg_stream_check.html ogg_stream_clear.html ogg_stream_destroy.html\
  9. ogg_stream_eos.html ogg_stream_flush.html ogg_stream_flush_fill.html ogg_stream_init.html\
  10. ogg_stream_iovecin.html ogg_stream_packetin.html ogg_stream_packetout.html\
  11. ogg_stream_packetpeek.html ogg_stream_pagein.html\
  12. ogg_stream_pageout.html ogg_stream_pageout_fill.html ogg_stream_reset.html\
  13. ogg_stream_reset_serialno.html ogg_stream_state.html\
  14. ogg_sync_buffer.html ogg_sync_check.html ogg_sync_clear.html ogg_sync_destroy.html\
  15. ogg_sync_init.html ogg_sync_pageout.html ogg_sync_pageseek.html\
  16. ogg_sync_reset.html ogg_sync_state.html ogg_sync_wrote.html\
  17. oggpack_adv.html oggpack_adv1.html oggpack_bits.html\
  18. oggpack_buffer.html oggpack_bytes.html oggpack_get_buffer.html\
  19. oggpack_look.html oggpack_look1.html oggpack_read.html\
  20. oggpack_read1.html oggpack_readinit.html oggpack_reset.html\
  21. oggpack_write.html oggpack_writealign.html oggpack_writecheck.html oggpack_writeclear.html\
  22. oggpack_writecopy.html oggpack_writeinit.html oggpack_writetrunc.html\
  23. overview.html reference.html style.css
  24. update-doc-version:
  25. @YEAR=$$(date +%Y); DAY=$$(date +%Y%m%d); \
  26. for f in $(srcdir)/*.html; do \
  27. sed -e "s/2000-[0-9]\{4\} Xiph.Org/2000-$$YEAR Xiph.Org/g" \
  28. -e "s/libogg release [0-9. -]\+/libogg release $(VERSION) - $$DAY/g"\
  29. < $$f > $$f.tmp; \
  30. if diff -q $$f $$f.tmp > /dev/null; then \
  31. rm $$f.tmp; \
  32. else \
  33. mv $$f.tmp $$f; \
  34. fi; \
  35. done;