diff options
author | Patrick Monnerat <[email protected]> | 2019-01-19 01:16:36 +0100 |
---|---|---|
committer | Victor Kareh <[email protected]> | 2019-01-30 15:59:28 -0500 |
commit | 1eeb21507d8ab6f063d0f3a6c42c067404c03ac3 (patch) | |
tree | 9e30094a052df29b218ecb25d536cd0d9a200382 | |
parent | ef861e9a5a48a3df18b11871fa317343fa578ad4 (diff) | |
download | python-caja-1eeb21507d8ab6f063d0f3a6c42c067404c03ac3.tar.bz2 python-caja-1eeb21507d8ab6f063d0f3a6c42c067404c03ac3.tar.xz |
Allow to "make dist" without building the docs.
-rw-r--r-- | docs/Makefile.am | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/Makefile.am b/docs/Makefile.am index 506fe6a..47e8ab0 100644 --- a/docs/Makefile.am +++ b/docs/Makefile.am @@ -62,10 +62,6 @@ CSS_FILES = xsl/style.css CSSdir = $(HTMLdir) CSS_DATA = $(CSS_FILES) -BUILT_SOURCES = \ - reference/builddate.xml \ - $(HTML_FILES) - CLEANFILES = \ caja-python-ref.* \ reference/builddate.xml \ @@ -85,6 +81,10 @@ REFERENCE_DEPS = \ if ENABLE_GTK_DOC +BUILT_SOURCES = \ + reference/builddate.xml \ + $(HTML_FILES) + reference/builddate.xml: $(REFERENCE_DEPS) $(PYTHON) -c 'import datetime; print datetime.date.today()' > $@ |