diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-03-05 08:01:55 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-03-05 08:01:55 +0000 |
commit | 75e1483e0dd7291325afa91c6028a775c344ee48 (patch) | |
tree | 0537ba29a08edd1ab346eefd1764a31319ffd8ff /docs/Makefile.am | |
parent | 8a4532ca2d56041c7abf6789efdd27213d862a84 (diff) |
'make clean' should only remove the generated html files, index.html is not
one of them!
Diffstat (limited to 'docs/Makefile.am')
-rw-r--r-- | docs/Makefile.am | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/docs/Makefile.am b/docs/Makefile.am index ee3d0e3f2..f0ff3c217 100644 --- a/docs/Makefile.am +++ b/docs/Makefile.am @@ -8,10 +8,11 @@ man_MANS = \ curl.1 \ curl-config.1 -HTMLPAGES = \ +GENHTMLPAGES = \ curl.html \ - curl-config.html \ - index.html + curl-config.html + +HTMLPAGES = $(GENHTMLPAGES) index.html PDFPAGES = \ curl.pdf \ @@ -19,7 +20,7 @@ PDFPAGES = \ SUBDIRS = examples libcurl -CLEANFILES = $(HTMLPAGES) $(PDFPAGES) +CLEANFILES = $(GENHTMLPAGES) $(PDFPAGES) EXTRA_DIST = MANUAL BUGS CONTRIBUTE FAQ FEATURES INTERNALS SSLCERTS \ README.win32 RESOURCES TODO TheArtOfHttpScripting THANKS \ |