diff options
author | Daniel Stenberg <daniel@haxx.se> | 2017-06-30 16:42:26 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2017-06-30 17:09:01 +0200 |
commit | d24838d4da9faadee5fa954bbcee7a75bb43d12b (patch) | |
tree | 12808c785573f1d322ffbd463afd0242b902c1b7 /docs | |
parent | 0362c778418a7c0594dae5537f91247ca1dae289 (diff) |
make: build the docs subdir only from within src
... and don't build at all in include
Prompted-by-work-by: Simon Warta
Ref: #1590
Closes #1591
Diffstat (limited to 'docs')
-rw-r--r-- | docs/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/Makefile.am b/docs/Makefile.am index 21c1be048..086b8c15f 100644 --- a/docs/Makefile.am +++ b/docs/Makefile.am @@ -35,8 +35,8 @@ HTMLPAGES = $(GENHTMLPAGES) index.html # Build targets in this file (.) before cmdline-opts to ensure that # the curl.1 rule below runs first -SUBDIRS = libcurl . cmdline-opts -DIST_SUBDIRS = $(SUBDIRS) examples +SUBDIRS = . cmdline-opts +DIST_SUBDIRS = $(SUBDIRS) examples libcurl CLEANFILES = $(GENHTMLPAGES) $(PDFPAGES) $(MANDISTPAGES) curl.1 |