This should make them nicely rendered in the GitHub file tree.
---------------------
ccache is a collective work with contributions from many people, listed in
-AUTHORS.txt and at https://ccache.samba.org/authors.html. Subsequent additions
+AUTHORS.adoc and at https://ccache.samba.org/authors.html. Subsequent additions
by contributing authors are implicitly licensed to the public under the same
terms (GNU GPL version 3 or later), but the contributing authors retain
copyrights on their portions of the work.
$(test_sources) \
CONTRIBUTING.md \
GPL-3.0.txt \
- LICENSE.txt \
+ LICENSE.adoc \
Makefile.in \
README.md \
autogen.sh \
configure \
configure.ac \
dev.mk.in \
- doc/AUTHORS.txt \
- doc/MANUAL.txt \
- doc/NEWS.txt \
+ doc/AUTHORS.adoc \
+ doc/MANUAL.adoc \
+ doc/NEWS.adoc \
install-sh \
m4 \
src/confitems.gperf \
.PHONY: docs
docs: $(generated_docs)
-%.html: %.txt
+%.html: %.adoc
$(ASCIIDOC) -a revnumber=$(version) -a toc -b xhtml11 $<
-%.xml: %.txt
+%.xml: %.adoc
$(ASCIIDOC) -a revnumber=$(version) -d manpage -b docbook $<
ccache.1: doc/MANUAL.xml
update-authors:
git log --pretty=format:"* %aN <%aE>" \
| sort -u \
- | perl -00 -p -i -e 's/^\*.*/<STDIN> . "\n"/es' doc/AUTHORS.txt
+ | perl -00 -p -i -e 's/^\*.*/<STDIN> . "\n"/es' doc/AUTHORS.adoc
.PHONY: check-syntax
check-syntax:
// The comparison using >= is intentional, due to a possible race between
// starting compilation and writing the include file. See also the notes
- // under "Performance" in MANUAL.txt.
+ // under "Performance" in doc/MANUAL.adoc.
if (!(conf->sloppiness & SLOPPY_INCLUDE_FILE_MTIME)
&& st.st_mtime >= time_of_compilation) {
cc_log("Include file %s too new", path);