File tree Expand file tree Collapse file tree 1 file changed +14
-3
lines changed
Expand file tree Collapse file tree 1 file changed +14
-3
lines changed Original file line number Diff line number Diff line change @@ -74,11 +74,16 @@ clean:
7474 rm -rf $(TMP_BASE )
7575 rm -rf dist
7676 rm -rf release
77+ @echo
78+ @echo " Clean finished."
7779
7880# Create venv.
7981.PHONY : _venv
8082_venv :
8183 virtualenv $(VENV_NAME )
84+ . $(VENV_NAME ) /bin/activate
85+ @echo
86+ @echo " Virtual env created. The source pages are in $( VENV_NAME) directory."
8287
8388# Ensures that the git workspace is clean.
8489.PHONY : _ensure-clean
@@ -155,28 +160,34 @@ local-run: local-build
155160# Run venv build command.
156161.PHONY : venv-build
157162venv-build : _venv
158- . $(VENV_NAME ) /bin/activate
159163 $(VENV_NAME ) /bin/python3 -m pip install -r ./docs/requirements.txt
160164 $(VENV_NAME ) /bin/python3 -m mkdocs build --clean --config-file mkdocs.yml
165+ @echo
166+ @echo " Build finished. The source pages are in $( VENV_NAME) directory."
161167 exit
162168
163169# Run venv run command.
164170.PHONY : venv-run
165- venv-run : _venv venv-build
166- . $(VENV_NAME ) /bin/activate
171+ venv-run : venv-build
167172 $(VENV_NAME ) /bin/python3 -m mkdocs serve --verbose --dirtyreload
168173
169174# Run github pages deploy command.
170175.PHONY : gh-pages
171176gh-pages :
172177 $(PYTHON ) -m mkdocs --verbose gh-deploy --force --remote-branch gh-pages
178+ @echo
179+ @echo " GitHub pages generated."
173180
174181# Run npm install command.
175182.PHONY : deps
176183deps :
177184 $(NPM ) install
185+ @echo
186+ @echo " Install finished."
178187
179188# Run npm all command.
180189.PHONY : all
181190all :
182191 $(NPM ) run all
192+ @echo
193+ @echo " Build finished."
You can’t perform that action at this time.
0 commit comments