Skip to content

Commit 3bb96ab

Browse files
Rollup merge of #33489 - GuillaumeGomez:howto, r=alexcrichton
Improve help for make command r? @steveklabnik
2 parents 521c0ae + 0619eeb commit 3bb96ab

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

Makefile.in

+20
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,20 @@
107107
#
108108
# run `make nitty-gritty`
109109
#
110+
# # Make command examples
111+
#
112+
# ## Docs linked commands
113+
#
114+
# * make check-stage1-rustdocck: Builds rustdoc. It has the advantage to compile
115+
# quite quickly since we're only using stage1
116+
# executables.
117+
# * make doc/error-index.md: Gets all doc blocks from doc comments and error
118+
# explanations to put them in a markdown file. You
119+
# can then test them by running
120+
# "rustdoc --test error-index.md".
121+
#
122+
# And of course, the wonderfully useful 'make tidy'! Always run it before opening a pull request to rust!
123+
#
110124
# </tips>
111125
#
112126
# <nitty-gritty>
@@ -256,3 +270,9 @@ ifneq ($(strip $(findstring TAGS.emacs,$(MAKECMDGOALS)) \
256270
CFG_INFO := $(info cfg: including ctags rules)
257271
include $(CFG_SRC_DIR)mk/ctags.mk
258272
endif
273+
274+
.DEFAULT:
275+
@echo "\n======================================================"
276+
@echo "== If you need help, run 'make help' or 'make tips' =="
277+
@echo "======================================================\n"
278+
exit 1

0 commit comments

Comments
 (0)