aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile.in
diff options
context:
space:
mode:
authorGravatar Kurtis Rader <krader@skepticism.us>2016-03-30 15:35:14 -0700
committerGravatar Kurtis Rader <krader@skepticism.us>2016-03-30 19:20:23 -0700
commit35cee1e39c0ca6bd35f2bb0c18ad6ffca5cc7108 (patch)
tree60bbe37119944dfdfd2528603b262d00525fada6 /Makefile.in
parent7e014174b876308f7a6105d6571f51ab7c2022f0 (diff)
remove "doc" make target and rename "user_doc"
Fixes #2874
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in30
1 files changed, 12 insertions, 18 deletions
diff --git a/Makefile.in b/Makefile.in
index 056a3d81..c68d7aa5 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -266,29 +266,23 @@ prof: all
#
# User documentation, describing the features of the fish shell.
#
-
-# Depend on the sources (*.hdr.in) and manually make the
-# intermediate *.hdr and doc.h files if needed
-# The sed command deletes everything including and after the first -, for simpler version numbers
-# Cleans up the user_doc/html directory once Doxygen is done.
-
-user_doc: $(HDR_FILES_SRC) Doxyfile.user $(HTML_SRC) $(HELP_SRC) doc.h $(HDR_FILES) lexicon_filter
- (cat Doxyfile.user; echo INPUT_FILTER=./lexicon_filter; \
- echo PROJECT_NUMBER=$(FISH_BUILD_VERSION) | $(SED) "s/-.*//") | doxygen - && touch user_doc; \
- cd user_doc/html && rm -f bc_s.png bdwn.png closed.png ftv2*.png nav*.png open.png sync_*.png tab*.* doxygen.* dynsections.js jquery.js pages.html
-
-#
-# Source code documentation. Also includes user documentation.
+# Depend on the sources (*.hdr.in) and manually make the intermediate *.hdr
+# and doc.h files if needed. The sed command deletes everything including and
+# after the first -, for simpler version numbers. Cleans up the user_doc/html
+# directory once Doxygen is done.
#
-
-doc: src/*.h src/*.cpp doc.h Doxyfile lexicon_filter
- (cat Doxyfile; echo INPUT_FILTER=./lexicon_filter; echo PROJECT_NUMBER=$(FISH_BUILD_VERSION)) | doxygen - ;
-
+doc: $(HDR_FILES_SRC) Doxyfile.user $(HTML_SRC) $(HELP_SRC) doc.h \
+ $(HDR_FILES) lexicon_filter
+ (cat Doxyfile.user; echo INPUT_FILTER=./lexicon_filter; \
+ echo PROJECT_NUMBER=$(FISH_BUILD_VERSION) | $(SED) "s/-.*//") | \
+ doxygen - && touch user_doc; \
+ cd user_doc/html && rm -f bc_s.png bdwn.png closed.png ftv2*.png \
+ nav*.png open.png sync_*.png tab*.* doxygen.* dynsections.js \
+ jquery.js pages.html
#
# PDF version of the source code documentation.
#
-
doc/refman.pdf: doc
cd doc/latex && \
make && \