diff options
author | Ludovic Courtès <ludo@gnu.org> | 2011-01-29 23:31:38 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2011-01-29 23:31:38 +0100 |
commit | 41d82ac9904c883a0c281cd1a89c03d9d968a801 (patch) | |
tree | 98d8d64ceb6c0e8266ac993758dc01b229cad944 /doc/ref/Makefile.am | |
parent | 0c247c332b24e3afca3415bc98e393bb1d98069e (diff) | |
download | guile-41d82ac9904c883a0c281cd1a89c03d9d968a801.tar.gz |
Don't remove `standard-library.texi' upon "make clean".
* doc/ref/Makefile.am (CLEANFILES): Rename to...
(DISTCLEANFILES): ... this. So that "make clean" doesn't remove
`standard-library.texi'. Reported by Hans Åberg <haberg-1@telia.com>.
Diffstat (limited to 'doc/ref/Makefile.am')
-rw-r--r-- | doc/ref/Makefile.am | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/ref/Makefile.am b/doc/ref/Makefile.am index 9578d5419..c154f428d 100644 --- a/doc/ref/Makefile.am +++ b/doc/ref/Makefile.am @@ -1,6 +1,7 @@ ## Process this file with Automake to create Makefile.in ## -## Copyright (C) 1998, 2004, 2006, 2008, 2009, 2010 Free Software Foundation, Inc. +## Copyright (C) 1998, 2004, 2006, 2008, 2009, 2010, +## 2011 Free Software Foundation, Inc. ## ## This file is part of GUILE. ## @@ -146,7 +147,7 @@ $(snarf_doc).texi: $(standard_library_scm_files) "$(abs_srcdir)/$(snarf_doc).scm" > "$@.tmp" mv "$@.tmp" "$@" -CLEANFILES = $(snarf_doc).texi +DISTCLEANFILES = $(snarf_doc).texi EXTRA_DIST += $(snarf_doc).scm make-texinfo.scm $(snarf_doc).texi $(snarf_doc).am |