Skip to content

Commit

Permalink
Use make instead of $(MAKE)
Browse files Browse the repository at this point in the history
  • Loading branch information
sbellem authored and lilione committed May 15, 2020
1 parent d09af68 commit 0f9aca8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ servedocs-local: docs ## compile the docs watching for changes
watchmedo shell-command -p '*.rst' -c '$(MAKE) -C docs html' -R -D .
=======
docs: ## generate Sphinx HTML documentation
docker-compose run --rm honeybadgermpc $(MAKE) -C docs clean
docker-compose run --rm honeybadgermpc $(MAKE) -C docs html O="-v -W --keep-going"
docker-compose run --rm honeybadgermpc make -C docs clean
docker-compose run --rm honeybadgermpc make -C docs html O="-v -W --keep-going"
docker-compose -f docs.yml stop viewdocs
docker-compose -f docs.yml up -d viewdocs

Expand Down

0 comments on commit 0f9aca8

Please sign in to comment.