Add static documentation install to Makefile

This includes README, ChangeLog and the like.
This commit is contained in:
Gergely Polonkai 2016-02-27 16:17:46 +01:00
parent 11c10d9eae
commit 05aea948a2
2 changed files with 55 additions and 0 deletions

2
.gitignore vendored
View File

@ -32,6 +32,8 @@ Makefile.in
/GRTAGS /GRTAGS
/GSYMS /GSYMS
/GTAGS /GTAGS
/INSTALL
/ChangeLog
/src/matrix-version.h /src/matrix-version.h
/src/matrix-enumtypes.[ch] /src/matrix-enumtypes.[ch]
/src/matrix-marshalers.[ch] /src/matrix-marshalers.[ch]

View File

@ -4,3 +4,56 @@ SUBDIRS = src
if ENABLE_GTK_DOC if ENABLE_GTK_DOC
SUBDIRS += docs/reference/matrix-glib SUBDIRS += docs/reference/matrix-glib
endif endif
matrixglibdocdir = ${prefix}/doc/matrix-glib
matrixglibdoc_DATA = \
README \
COPYING \
AUTHORS \
ChangeLog \
INSTALL \
NEWS
# with make dist
EXTRA_DIST = $(matrixglibdoc_DATA) \
autogen.sh \
config.rpath
MAINTAINERCLEANFILES = \
$(srcdir)/aclocal.m4 \
$(srcdir)/compile \
$(srcdir)/config.guess \
$(srcdir)/config.h.in \
$(srcdir)/config.rpath \
$(srcdir)/config.sub \
$(srcdir)/depcomp \
$(srcdir)/install-sh \
$(srcdir)/ltmain.sh \
$(srcdir)/missing \
$(srcdir)/mkinstalldirs \
$(srcdir)/ChangeLog \
`find "$(srcdir)" -type f -name Makefile.in -print` \
$(NULL)
DISTCLEANFILES = \
ChangeLog
# Automatically generate ChangeLog from git
ChangeLog:
@echo Creating $@
@touch ChangeLog
@if test -d "$(srcdir)/.git"; then \
(GIT_DIR=$(top_srcdir)/.git ./missing --run git log --stat) | fmt > $@.tmp \
&& mv -f $@.tmp $@ \
|| ($(RM) $@.tmp; \
echo Failed to generate ChangeLog, your ChangeLog may be outdated >&2; \
(test -f $@ || echo git-log is required to generate this file >> $@)); \
else \
test -f $@ || \
(echo A git checkout and git-log is required to generate ChangeLog >&2 && \
echo A git checkout and git-log is required to generate this file >> $@); \
fi
.PHONY: ChangeLog