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 committed Mar 30, 2020
1 parent be47cac commit 15813d9
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 @@ -61,8 +61,8 @@ coverage: ## check code coverage quickly with the default Python
$(BROWSER) htmlcov/index.html

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 15813d9

Please sign in to comment.